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
| 144 |[Binary Tree Preorder Traversal](https://leetcode.com/problems/binary-tree-preorder-traversal/)|[Java](./Java/binary-tree-preorder-traversal.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Stack ||
147
148
| 145 |[Binary Tree Postorder Traversal](https://leetcode.com/problems/binary-tree-postorder-traversal/)|[Java](./Java/binary-tree-postorder-traversal.java)|_O(n)_|_O(logn)_| Hard | Binary Tree, Stack ||
148
149
| 103 |[ZigZag Level Order](https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/)|[JavaScript](./JavaScript/Binary-Tree-ZigZag-Traversal.js)|_O(n)_|_O(n)_| Medium | Binary Tree ||
149
150
| 129 |[Sum Root to Leaf Numbers](https://leetcode.com/problems/sum-root-to-leaf-numbers/)|[Java](./Java/sum-root-to-leaf-numbers.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Depth First Search ||
150
151
| 307 |[Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/)|[Java](./Java/Range-Sum-Query-Mutable.java)|_O(logn)_|_O(n)_| Medium | Segment Tree ||
151
152
| 919 |[Complete Binary Tree Inserter](https://leetcode.com/problems/complete-binary-tree-inserter/)|[Java](./Java/complete-binary-tree-inserter.java)|_O(n)_|_O(n)_| Medium | Tree ||
152
-
| 124 |[Binary Tree Maximum Path Sum](https://leetcode.com/problems/binary-tree-maximum-path-sum/)|[C++](./C++/Binary-Tree-Maximum-Path-Sum.cpp)|_O(n)_|_O(n)_| Hard | Tree ||
153
+
| 124 |[Binary Tree Maximum Path Sum](https://leetcode.com/problems/binary-tree-maximum-path-sum/)|[C++](./C++/Binary-Tree-Maximum-Path-Sum.cpp)|_O(n)_|_O(n)_| Hard | Tree ||
153
154
| 1028 |[Recover a Tree From Preorder Traversal](https://leetcode.com/problems/recover-a-tree-from-preorder-traversal/)|[C++](./C++/Recover-a-Tree-From-Preorder-Traversal.cpp)|_O(n)_|_O(n)_| Hard | Tree ||
154
155
155
156
@@ -189,6 +190,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
189
190
190
191
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
|056|[Wildcard Matching](https://leetcode.com/problems/wildcard-matching/)|[Python](./Python/wildcard-matching.py)|_O(n^2)_|_O(n^2)_| Hard ||
246
248
| 343 |[Integer Break](https://leetcode.com/problems/integer-break/)|[C++](./C++/Integer-Break.cpp)|_O(n^2)_|_O(n)_| Medium ||
247
249
| 139 |[Word Break](https://leetcode.com/problems/word-break/)|[Python](./Python/word-break-1.py)|_O(n^3)_|_O(n)_| Medium | DP ||
248
-
| 1092 |[Shortest Common Supersequence](https://leetcode.com/problems/shortest-common-supersequence/)|[C++](./C++/Shortest-Common-Supersequence.cpp)|_O(n^2)_|_O(n^2)_| Hard | DP ||
250
+
| 1092 |[Shortest Common Supersequence](https://leetcode.com/problems/shortest-common-supersequence/)|[C++](./C++/Shortest-Common-Supersequence.cpp)|_O(n^2)_|_O(n^2)_| Hard | DP ||
249
251
250
252
251
253
<br/>
@@ -258,8 +260,9 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
258
260
259
261
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
|33 |[Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/)|[Python](./Python/search-in-rotated-sorted-array.py)|_O(logn)_|_O(1)_| Medium || Binary Search |
265
+
|033|[Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/)|[Python](./Python/search-in-rotated-sorted-array.py)|_O(logn)_|_O(1)_| Medium || Binary Search |
0 commit comments