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 473
473
1080 |[ Insufficient Nodes in Root to Leaf Paths] ( https://leetcode.com/problems/insufficient-nodes-in-root-to-leaf-paths/ ) | [ C++] ( ./C++/insufficient-nodes-in-root-to-leaf-paths.cpp ) [ Python] ( ./Python/insufficient-nodes-in-root-to-leaf-paths.py ) | _ O(n)_ | _ O(h)_ | Medium || DFS |
474
474
1104 |[ Path In Zigzag Labelled Binary Tree] ( https://leetcode.com/problems/path-in-zigzag-labelled-binary-tree/ ) | [ C++] ( ./C++/path-in-zigzag-labelled-binary-tree.cpp ) [ Python] ( ./Python/path-in-zigzag-labelled-binary-tree.py ) | _ O(logn)_ | _ O(logn)_ | Easy || Math |
475
475
1120 |[ Maximum Average Subtree] ( https://leetcode.com/problems/maximum-average-subtree/ ) | [ C++] ( ./C++/maximum-average-subtree.cpp ) [ Python] ( ./Python/maximum-average-subtree.py ) | _ O(n)_ | _ O(h)_ | Easy |🔒| DFS |
476
- 1123 |[ Lowest Common Ancestor of Deepest Leaves] ( https://leetcode.com/problems/lowest-common-ancestor-of-deepest-leaves/ ) | [ C++] ( ./C++/lowest-common-ancestor-of-deepest-leaves.cpp ) [ Python] ( ./Python/lowest-common-ancestor-of-deepest-leaves.py ) | _ O(n)_ | _ O(h)_ | Medium |🔒 | DFS |
476
+ 1123 |[ Lowest Common Ancestor of Deepest Leaves] ( https://leetcode.com/problems/lowest-common-ancestor-of-deepest-leaves/ ) | [ C++] ( ./C++/lowest-common-ancestor-of-deepest-leaves.cpp ) [ Python] ( ./Python/lowest-common-ancestor-of-deepest-leaves.py ) | _ O(n)_ | _ O(h)_ | Medium || DFS |
477
477
478
478
## Hash Table
479
479
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
You can’t perform that action at this time.
0 commit comments