LeetCode
Record of solving LeetCode problems with JavaScript
| # | Title | Solution | Difficulty | Tags |
|---|---|---|---|---|
| 36 | Valid Sudoku | link | MEDIUM | Hash Table |
| 48 | Rotate Image | link | MEDIUM | Array |
| 53 | Maximum Subarray | link | MEDIUM | DP |
| 100 | Same Tree | link | EASY | Tree DFS |
| 114 | Flatten Binary Tree to Linked List | link | MEDIUM | Tree Recursion |
| 151 | Reverse Words in a String | link | MEDIUM | String |
| 129 | Sum Root to Leaf Numbers | link | MEDIUM | Tree DFS |
| 202 | Happy Number | link | EASY | Hash Table |
| 219 | Contains Duplicate II | link | EASY | Hash Table Sliding Window |
| 1221 | Split a String in Balanced Strings | link | EASY | Greedy |
| 2625 | Flatten Deeply Nested Array | link | MEDIUM | Recursion |