You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li>There's also this <ahref="/mechanical-keyboard-switch-collection-legacy/index.html"><b>old version of the page</b></a>. I'm still migrating data from it.</li>
<li>There's also this <ahref="/mechanical-keyboard-switch-collection-legacy/index.html"><b>old version of the page</b></a>. I'm still migrating data from it.</li>
@@ -293,10 +332,6 @@ words = [s.strip() for s in stdin.readline().strip().split()]
293
332
nums2 = [[int(x) for x in s.strip().split()] for s in stdin.readlines()]
294
333
```
295
334
296
-
### Leetcode
297
-
298
-
Python lacks sorted associative containers like C++'s `std::set` and `std::map`. As a workaround, Leetcode supplies the [`sortedcontainers`](https://grantjenks.com/docs/sortedcontainers/) library to use on the platform (as mentioned [here](https://support.leetcode.com/hc/en-us/articles/360011833974-What-are-the-environments-for-the-programming-languages-)).
299
-
300
335
### Trie
301
336
302
337
```py
@@ -329,6 +364,10 @@ class Trie:
329
364
returnTrue
330
365
```
331
366
367
+
### Leetcode
368
+
369
+
Python lacks sorted associative containers like C++'s `std::set` and `std::map`. As a workaround, Leetcode supplies the [`sortedcontainers`](https://grantjenks.com/docs/sortedcontainers/) library to use on the platform (as mentioned [here](https://support.leetcode.com/hc/en-us/articles/360011833974-What-are-the-environments-for-the-programming-languages-)).
0 commit comments