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
| Leetcode |[285. Inorder Successor in BST](https://leetcode.com/problems/inorder-successor-in-bst/description/)|[Java](./java/inorderSuccessor.java)| O(h) | O(1) | Medium ||
142
-
| Leetcode |[298. Binary Tree Longest Consecutive Sequence](https://leetcode.com/problems/binary-tree-longest-consecutive-sequence/description/)|[Java](./java/longestConsecutive.java)| O(n) | O(n) | Medium ||
142
+
| Leetcode |[297. Serialize and Deserialize Binary Tree](https://leetcode.com/problems/serialize-and-deserialize-binary-tree/description/)|[Java](./java/longestConsecutive.java)| O(n) | O(n) | Medium ||
143
+
| Leetcode |[298. Binary Tree Longest Consecutive Sequence](https://leetcode.com/problems/binary-tree-longest-consecutive-sequence/description/)|[Java](./java/serializeDeserialize.java)| O(n) | O(n) | Hard ||
143
144
| Leetcode |[314. Binary Tree Vertical Order Traversal](https://leetcode.com/problems/binary-tree-vertical-order-traversal/description/)|[Java](./java/verticalOrder.java)| O(n) | O(n) | Medium ||
144
145
| Leetcode |[404. Sum of Left Leaves](https://leetcode.com/problems/sum-of-left-leaves/description/)|[Java](./java/sumOfLeftLeaves.java)| O(n) | O(n) | Easy ||
@@ -167,6 +168,7 @@ Feel free to submit pull requests, add issues and be a contributer.
167
168
| Leetcode |[91. Decode Ways](https://leetcode.com/problems/decode-ways/description/)|[Java](./java/numDecodings.java)|_O(n)_|_O(n)_| Medium ||
168
169
| Leetcode |[152. Maximum Product Subarray](https://leetcode.com/problems/maximum-product-subarray/)|[Java](./java/MaximumProductSubArray.java)|_O(n)_|_O(1)_| Medium ||
169
170
| Leetcode |[198. House Robber](https://leetcode.com/problems/house-robber/description/)|[Java](./java/rob.java)|_O(n)_|_O(1)_| Easy ||
171
+
| Leetcode |[221. Maximal Square](https://leetcode.com/problems/maximal-square/description/)|[Java](./java/maximalSquare.java)|_O(mn)_|_O(mn)_| Medium ||
170
172
| Leetcode |[264. Ugly Number II](https://leetcode.com/problems/ugly-number-ii/description/)|[Java](./java/nthUglyNumber.java)|_O(n)_|_O(1)_| Easy ||
171
173
| Leetcode |[628. Maximum Product of Three Numbers](https://leetcode.com/problems/maximum-product-of-three-numbers)|[Java](./java/MaximumProduct.java)|_O(n)_|_O(1)_| Easy ||
172
174
| Leetcode |[646. Maximum Length of Pair Chain](https://leetcode.com/problems/maximum-length-of-pair-chain/description/)|[Java](./java/findLongestChain.java)|_O(n)_|_O(1)_| Easy ||
0 commit comments