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
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -296,18 +296,18 @@ Pattern500 is inspired by Blind 75 and Grind 75's classic problem selection. Pat
296
296
| 282 ||[344. Reverse String](https://leetcode.com/problems/reverse-string/)|[H]array-two-pointers-opposite-direction | use shrink type |[Python]([H]array/[H]array-two-pointers-opposite-direction/344-reverse-string.py)|
297
297
| 283 ||[151. Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/)|[H]array-two-pointers-opposite-direction | use shrink type |[Python]([H]array/[H]array-two-pointers-opposite-direction/151-reverse-words-in-a-string.py)|
298
298
| 284 | O |[5. Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/)|[H]array-two-pointers-opposite-direction | use expand type |[Python]([H]array/[H]array-two-pointers-opposite-direction/5-longest-palindromic-substring.py)|
299
-
| 285 | O |[XX]()|[X]XX| XX |[Python]()|
300
-
| 286 | O |[XX]()|[X]XX| XX |[Python]()|
301
-
| 287 |O|[XX]()|[X]XX| XX |[Python]()|
302
-
| 288 |O|[XX]()|[X]XX| XX |[Python]()|
303
-
| 289 |O|[XX]()|[X]XX| XX |[Python]()|
304
-
| 290 |O|[XX]()|[X]XX| XX |[Python]()|
305
-
| 291 |O|[XX]()|[X]XX| XX |[Python]()|
306
-
| 292 |O|[XX]()|[X]XX| XX |[Python]()|
307
-
| 293 |O|[XX]()|[X]XX| XX |[Python]()|
308
-
| 294 |O|[XX]()|[X]XX| XX |[Python]()|
309
-
| 295 |O|[XX]()|[X]XX| XX |[Python]()|
310
-
| 296 |O|[XX]()|[X]XX| XX |[Python]()|
299
+
| 285 | O |[179. Largest Number](https://leetcode.com/problems/largest-number/)|[H]array-sort| use self defined sort|[Python]([H]array/[H]array-sort/179-largest-number.py)|
300
+
| 286 | O |[215. Kth Largest Element in an Array](https://leetcode.com/problems/kth-largest-element-in-an-array/)|[H]array-sort| top k problem (based on sort)|[Python]([H]array/[H]array-sort/215-kth-largest-element-in-an-array.py)|
301
+
| 287 ||[347. Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/)|[H]array-sort| top k problem (based on sort)|[Python]([H]array/[H]array-sort/347-top-k-frequent-elements.py)|
302
+
| 288 ||[1985. Find the Kth Largest Integer in the Array](https://leetcode.com/problems/find-the-kth-largest-integer-in-the-array/)|[H]array-sort| top k problem (based on sort)|[Python]([H]array/[H]array-sort/1985-find-the-kth-largest-integer-in-the-array.py)|
303
+
| 289 ||[1710. Maximum Units on a Truck](https://leetcode.com/problems/maximum-units-on-a-truck/)|[H]array-sort| use bucket sort|[Python]([H]array/[H]array-sort/1710-maximum-units-on-a-truck.py)|
304
+
| 290 ||[451. Sort Characters By Frequency](https://leetcode.com/problems/sort-characters-by-frequency/)|[H]array-sort| use bucket sort|[Python]([H]array/[H]array-sort/451-sort-characters-by-frequency.py)|
305
+
| 291 ||[1099. Two Sum Less Than K](https://leetcode.com/problems/two-sum-less-than-k/)|[H]array-sort| use bucket sort|[Python]([H]array/[H]array-sort/1099-two-sum-less-than-k.py)|
306
+
| 292 ||[164. Maximum Gap](https://leetcode.com/problems/maximum-gap/)|[H]array-sort| use bucket sort|[Python]([H]array/[H]array-sort/164-maximum-gap.py)|
307
+
| 293 ||[462. Minimum Moves to Equal Array Elements II](https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/)|[H]array-sort| use quick select|[Python]([H]array/[H]array-sort/462-minimum-moves-to-equal-array-elements-ii.py)|
308
+
| 294 ||[324. Wiggle Sort II](https://leetcode.com/problems/wiggle-sort-ii/)|[H]array-sort| use quick select|[Python]([H]array/[H]array-sort/324-wiggle-sort-ii.py)|
309
+
| 295 ||[315. Count of Smaller Numbers After Self](https://leetcode.com/problems/count-of-smaller-numbers-after-self/)|[H]array-sort| use merge sort|[Python]([H]array/[H]array-sort/315-count-of-smaller-numbers-after-self.py)|
310
+
| 296 ||[493. Reverse Pairs](https://leetcode.com/problems/reverse-pairs/)|[H]array-sort| use merge sort|[Python]([H]array/[H]array-sort/493-reverse-pairs.py)|
| 298 ||[346. Moving Average from Data Stream](https://leetcode.com/problems/moving-average-from-data-stream/)|[I]stack-queue | use queue to simulate |[Python]([I]stack-queue/[I]stack-queue/346-moving-average-from-data-stream.py)|
313
313
| 299 | O |[20. Valid Parentheses](https://leetcode.com/problems/valid-parentheses/)|[I]stack-queue | use stack to store the last states |[Python]([I]stack-queue/[I]stack-queue/20-valid-parentheses.py)|
0 commit comments