|
96 | 96 | | **0292** | [Nim Game][292] | Math, Brainteaser, Game Theory | ![][easy] | |
|
97 | 97 | | **0300** | [Longest Increasing Subsequence][300] | Array, Binary Search, DP | ![][medium] | |
|
98 | 98 | | **0322** | [Coin Change][322] | Array, Dynamic Programming, BFS | ![][medium] | |
|
| 99 | +| **0326** | [Power of Three][326] | Math, Recursion | ![][easy] | | |
99 | 100 | | **0337** | [House Robber III][337] | Dynamic Programming, Tree, Depth First Search, Binary Tree | ![][medium] | |
|
| 101 | +| **0338** | [Counting Bits][338] | Dynamic Programming, Bit Manip | ![][easy] | | |
| 102 | +| **0342** | [Power of Four][342] | Math, Bit Manipulation, Recursion | ![][easy] | | |
100 | 103 | | **0344** | [Reverse String][344] | Two Pointers, String, Recursion | ![][easy] | |
|
| 104 | +| **0345** | [Reverse Vowels of a String][345] | Two Pointers, String | ![][easy] | | |
101 | 105 | | **0367** | [Valid Perfect Square][367] | Math, Binary Search | ![][easy] | |
|
102 | 106 | | **0369** | [Plus One Linked List][369] | Linked List, Math | ![][medium] | 🔒 |
|
103 | 107 | | **0389** | [Find the Difference][389] | Hash Table, String, Bit Manipulation, Sorting | ![][easy] | |
|
104 | 108 | | **0438** | [Find All Anagrams in a String][438] | Hash Table, String, Sliding Window | ![][medium] | |
|
105 | 109 | | **0442** | [Find All Duplicates][442] | Array, Hash Table | ![][medium] | |
|
106 | 110 | | **0445** | [Add Two Numbers II][445] | Linked List, Math, Stack | ![][medium] | |
|
| 111 | +| **0502** | [IPO][502] | Array, Greedy, Sorting, Heap (Priority Queue) | ![][hard] | | |
107 | 112 | | **0506** | [Relative Ranks][506] | Array, Sorting, Heap | ![][easy] | |
|
108 | 113 | | **0509** | [Fibonacci Number][509] | Math, Recursion, Dynamic Programming, Memoization | ![][easy] | |
|
109 | 114 | | **0516** | [Longest Palindromic Subsequence][516] | String, DP | ![][medium] | |
|
|
121 | 126 | | **0888** | [Fair Candy Swap][888] | Array, Hash Table, Binary Search, Sorting | ![][easy] | |
|
122 | 127 | | **0944** | [Delete Columns to Make Sorted][944] | Array, String | ![][easy] | |
|
123 | 128 | | **0997** | [Find the Town Judge][997] | Array, Hash Table, Graph | ![][easy] | |
|
| 129 | +| **1011** | [Capacity To Ship Packages Within D Days][1011] | Array, BS | ![][medium] | | |
124 | 130 | | **1047** | [Remove All Adjacent Duplicates In String][1047] | String, Stack | ![][easy] | |
|
125 |
| -| **1056** | [Capacity To Ship Packages Within D Days][1056] | Array, BS | ![][medium] | | |
126 | 131 | | **1092** | [Shortest Common Supersequence][1092] | String, DP | ![][hard] | |
|
127 | 132 | | **1143** | [Longest Common Subsequence][1143] | String, DP | ![][medium] | |
|
128 | 133 | | **1232** | [Check If It Is a Straight Line][1232] | Array, Math, Geometry | ![][easy] | |
|
|
153 | 158 | [26]: ./solution/0001-0100/026%20-%20Remove%20Duplicates%20from%20Sorted%20Array.md
|
154 | 159 | [27]: ./solution/0001-0100/027%20-%20Remove%20Element.md
|
155 | 160 | [35]: ./solution/0001-0100/035%20-%20Search%20Insert%20Position.md
|
156 |
| -[35]: ./solution/0001-0100/035%20-%20Search%20Insert%20Position.md |
157 | 161 | [37]: ./solution/0001-0100/037%20-%20Sudoku%20Solver.md
|
158 | 162 | [51]: ./solution/0001-0100/051%20-%20N-Queens.md
|
159 | 163 | [53]: ./solution/0001-0100/053%20-%20Maximum%20Subarray.md
|
|
162 | 166 | [61]: ./solution/0001-0100/061%20-%20Rotate%20List%20.md
|
163 | 167 | [63]: ./solution/0001-0100/063%20-%20Unique%20Paths%20II.md
|
164 | 168 | [66]: ./solution/0001-0100/066%20-%20Plus%20One.md
|
165 |
| -[66]: ./solution/0001-0100/066%20-%20Plus%20One.md |
166 |
| -[67]: ./solution/0001-0100/067%20-%20Add%20Binary.md |
167 | 169 | [67]: ./solution/0001-0100/067%20-%20Add%20Binary.md
|
168 | 170 | [69]: ./solution/0001-0100/069%20-%20Sqrt(x).md
|
169 | 171 | [70]: ./solution/0001-0100/070%20-%20Climbing%20Stairs.md
|
|
228 | 230 | [292]: ./solution/0201-0300/292%20-%20Nim%20Game.md
|
229 | 231 | [300]: ./solution/0201-0300/300%20-%20Longest%20Increasing%20Subsequence.md
|
230 | 232 | [322]: ./solution/0301-0400/322%20-%20Coin%20Change.md
|
| 233 | +[326]: ./solution/0301-0400/326%20-%20Power%20Of%20Three.md |
231 | 234 | [337]: ./solution/0301-0400/337%20-%20House%20Robber%20III.md
|
| 235 | +[338]: ./solution/0301-0400/338%20-%20Counting%20Bits.md |
| 236 | +[342]: ./solution/0301-0400/342%20-%20Power%20of%20Four.md |
232 | 237 | [344]: ./solution/0301-0400/344%20-%20Reverse%20String.md
|
| 238 | +[345]: ./solution/0301-0400/345%20-%20Reverse%20Vowels%20of%20a%20String.md |
233 | 239 | [367]: ./solution/0301-0400/367%20-%20Valid%20Perfect%20Square.md
|
234 | 240 | [369]: ./solution/0301-0400/369%20-%20Plus%20One%20Linked%20List.md
|
235 | 241 | [387]: ./solution/0301-0400/387%20-%20First%20Unique%20Character%20in%20a%20String.md
|
|
238 | 244 | [442]: ./solution/0401-0500/442%20-%20Find%20All%20Duplicates%20in%20an%20Array.md
|
239 | 245 | [445]: ./solution/0401-0500/445%20-%20Add%20Two%20Numbers%20II.md
|
240 | 246 | [461]: ./solution/0401-0500/461%20-%20Hamming%20Distance.md
|
| 247 | +[502]: ./solution/0501-0600/502%20-%20IPO.md |
241 | 248 | [506]: ./solution/0501-0600/506%20-%20%20Relative%20Ranks.md
|
242 | 249 | [509]: ./solution/0501-0600/509%20-%20Fibonacci%20Number.md
|
243 | 250 | [516]: ./solution/0501-0600/516%20-%20Longest%20Palindromic%20Subsequence.md
|
|
256 | 263 | [944]: ./solution/0901-1000/944%20-%20Delete%20Columns%20to%20Make%20Sorted.md
|
257 | 264 | [997]: ./solution/0901-1000/997%20-%20Find%20the%20Town%20Judge.md
|
258 | 265 | [997]: ./solution/0901-1000/997%20-%20Find%20the%20Town%20Judge.md
|
| 266 | +[1011]: ./solution/1001-1100/1011%20-%20Capacity%20To%20Ship%20Packages%20Within%20D%20Days.md |
259 | 267 | [1047]: ./solution/1001-1100/1047%20-%20Remove%20All%20Adjacent%20Duplicates%20In%20String.md
|
260 |
| -[1056]: ./solution/1001-1100/1011%20-%20Capacity%20To%20Ship%20Packages%20Within%20D%20Days.md |
261 | 268 | [1092]: ./solution/1001-1100/1092%20-%20Shortest%20Common%20Supersequence.md
|
262 | 269 | [1143]: ./solution/1101-1200/1143%20-%20Longest%20Common%20Subsequence.md
|
263 | 270 | [1232]: ./solution/1201-1300/1232%20-%20Check%20If%20It%20Is%20a%20Straight%20Line.md
|
|
0 commit comments