File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 1464
1464
1429 | [ First Unique Number] ( https://leetcode.com/problems/first-unique-number/ ) | [ C++] ( ./C++/first-unique-number.cpp ) [ Python] ( ./Python/first-unique-number.py ) | ctor: _ O(k)_ <br >add: _ O(1)_ <br >showFirstUnique: _ O(1)_ | _ O(n)_ | Medium | 🔒 | LinkedHashSet
1465
1465
1472| [ Design Browser History] ( https://leetcode.com/problems/design-browser-history/ ) | [ C++] ( ./C++/design-browser-history.cpp ) [ Python] ( ./Python/design-browser-history.py ) | ctor: _ O(1)_ <br >visit: _ O(1)_ <br >back: _ O(1)_ <br >forward: _ O(1)_ | _ O(n)_ | Medium |||
1466
1466
1476| [ Subrectangle Queries] ( https://leetcode.com/problems/subrectangle-queries/ ) | [ C++] ( ./C++/subrectangle-queries.cpp ) [ Python] ( ./Python/subrectangle-queries.py ) | ctor: _ O(1)_ <br >update: _ O(1)_ <br >get: _ O(u)_ | _ O(u)_ | Medium |||
1467
- 1483| [ Kth Ancestor of a Tree Node] ( https://leetcode.com/problems/kth-ancestor-of-a-tree-node/ ) | [ C++] ( ./C++/kth-ancestor-of-a-tree-node.cpp ) [ Python] ( ./Python/kth-ancestor-of-a-tree-node.py ) | ctor: O (n * logh)<br >get: O (logh) | _ O(n * logh)_ | Hard || DP, Binary Jump |
1467
+ 1483| [ Kth Ancestor of a Tree Node] ( https://leetcode.com/problems/kth-ancestor-of-a-tree-node/ ) | [ C++] ( ./C++/kth-ancestor-of-a-tree-node.cpp ) [ Python] ( ./Python/kth-ancestor-of-a-tree-node.py ) | ctor: _ O (n * logh)_ <br >get: _ O (logh)_ | _ O(n * logh)_ | Hard || DP, Binary Jump |
1468
1468
1469
1469
## Concurrency
1470
1470
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
You can’t perform that action at this time.
0 commit comments