Skip to content

Commit fbbf87b

Browse files
committed
LC 2336. Smallest Number in Infinite Set (Python PQ)
1 parent f20cdef commit fbbf87b

File tree

3 files changed

+2432
-0
lines changed

3 files changed

+2432
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ Solutions to LeetCode problems. The first column links to the problem in LeetCod
466466
| [2300. Successful Pairs of Spells and Potions][lc2300] | 🟠 Medium | [![python](res/py.png)][lc2300py] [![rust](res/rs.png)][lc2300rs] |
467467
| [2306. Naming a Company][lc2306] | 🔴 Hard | [![python](res/py.png)][lc2306py] [![rust](res/rs.png)][lc2306rs] |
468468
| [2316. Count Unreachable Pairs of Nodes in an Undirected Graph][lc2316] | 🟠 Medium | [![rust](res/rs.png)][lc2316rs] |
469+
| [2336. Smallest Number in Infinite Set][lc2336] | 🟠 Medium | [![python](res/py.png)][lc2336py] |
469470
| [2348. Number of Zero-Filled Subarrays][lc2348] | 🟠 Medium | [![python](res/py.png)][lc2348py] [![rust](res/rs.png)][lc2348rs] |
470471
| [2359. Find Closest Node to Given Two Nodes][lc2359] | 🟠 Medium | [![python](res/py.png)][lc2359py] [![rust](res/rs.png)][lc2359rs] |
471472
| [2360. Longest Cycle in a Graph][lc2360] | 🔴 Hard | [![python](res/py.png)][lc2360py] [![rust](res/rs.png)][lc2360rs] [![java](res/java.png)][lc2360java] |
@@ -1477,6 +1478,8 @@ Solutions to LeetCode problems. The first column links to the problem in LeetCod
14771478
[lc2306rs]: leetcode/naming-a-company.rs
14781479
[lc2316]: https://leetcode.com/problems/count-unreachable-pairs-of-nodes-in-an-undirected-graph/
14791480
[lc2316rs]: leetcode/count-unreachable-pairs-of-nodes-in-an-undirected-graph.rs
1481+
[lc2336]: https://leetcode.com/problems/smallest-number-in-infinite-set/
1482+
[lc2336py]: leetcode/smallest-number-in-infinite-set.py
14801483
[lc2348]: https://leetcode.com/problems/number-of-zero-filled-subarrays/
14811484
[lc2348py]: leetcode/number-of-zero-filled-subarrays.py
14821485
[lc2348rs]: leetcode/number-of-zero-filled-subarrays.rs

0 commit comments

Comments
 (0)