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
| 198 ||[243. Shortest Word Distance](https://leetcode.com/problems/shortest-word-distance/)|[H]array| traverse|[Python]([H]array/[H]array/243-shortest-word-distance.py)|
213
+
| 199 | O |[169. Majority Element](https://leetcode.com/problems/majority-element/)|[H]array| use boyer moore vote algorithm|[Python]([H]array/[H]array/169-majority-element.py)|
214
+
| 200 ||[229. Majority Element II](https://leetcode.com/problems/majority-element-ii/)|[H]array| use boyer moore vote algorithm|[Python]([H]array/[H]array/229-majority-element-ii.py)|
215
+
| 201 | O |[189. Rotate Array](https://leetcode.com/problems/rotate-array/)|[H]array| use reverse technique|[Python]([H]array/[H]array/189-rotate-array.py)|
216
+
| 202 | O |[362. Design Hit Counter](https://leetcode.com/problems/design-hit-counter/)|[H]array| use circular array|[Python]([H]array/[H]array/362-design-hit-counter.py)|
217
+
| 203 | O |[41. First Missing Positive](https://leetcode.com/problems/first-missing-positive/)|[H]array| specific range array (cyclic sort)|[Python]([H]array/[H]array/41-first-missing-positive.py)|
218
+
| 204 ||[442. Find All Duplicates in an Array](https://leetcode.com/problems/find-all-duplicates-in-an-array/)|[H]array| specific range array (cyclic sort)|[Python]([H]array/[H]array/442-find-all-duplicates-in-an-array.py)|
219
+
| 205 ||[448. Find All Numbers Disappeared in an Array](https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/)|[H]array| specific range array (cyclic sort)|[Python]([H]array/[H]array/448-find-all-numbers-disappeared-in-an-array.py)|
220
+
| 206 | O |[287. Find the Duplicate Number](https://leetcode.com/problems/find-the-duplicate-number/)|[H]array| specific range array (cycle detection)|[Python]([H]array/[H]array/287-find-the-duplicate-number.py)|
221
+
| 207 ||[845. Longest Mountain in Array](https://leetcode.com/problems/longest-mountain-in-array/)|[H]array| use finite state machine|[Python]([H]array/[H]array/845-longest-mountain-in-array.py)|
222
+
| 208 ||[370. Range Addition](https://leetcode.com/problems/range-addition/)|[H]array| use difference array|[Python]([H]array/[H]array/370-range-addition.py)|
| 210 ||[384. Shuffle an Array](https://leetcode.com/problems/shuffle-an-array/)|[H]array| use knuth shuffle|[Python]([H]array/[H]array/384-shuffle-an-array.py)|
225
+
| 211 ||[398. Random Pick Index](https://leetcode.com/problems/random-pick-index/)|[H]array| use reservoir sampling|[Python]([H]array/[H]array/398-random-pick-index.py)|
226
+
| 212 ||[1535. Find the Winner of an Array Game](https://leetcode.com/problems/find-the-winner-of-an-array-game/)|[H]array| simulation|[Python]([H]array/[H]array/1535-find-the-winner-of-an-array-game.py)|
227
+
| 213 ||[280. Wiggle Sort](https://leetcode.com/problems/wiggle-sort/)|[H]array| use swap|[Python]([H]array/[H]array/280-wiggle-sort.py)|
228
+
| 214 ||[1472. Design Browser History](https://leetcode.com/problems/design-browser-history/)|[H]array| maintain array's range dynamically|[Python]([H]array/[H]array/1472-design-browser-history.py)|
229
+
| 215 ||[163. Missing Ranges](https://leetcode.com/problems/missing-ranges/)|[H]array| pre-process the array|[Python]([H]array/[H]array/163-missing-ranges.py)|
0 commit comments