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
| 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)|
238
238
| 216 | O |[56. Merge Intervals](https://leetcode.com/problems/merge-intervals/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/56-merge-intervals.py)|
239
-
| 217 | O |[57. Insert Interval](https://leetcode.com/problems/insert-interval/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/57-insert-interval.py)|
239
+
| 217 | O |[57. Insert Interval](https://leetcode.com/problems/insert-interval/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/57-insert-interval.py)[Java]([H]array/[H]array-line-sweep/57-insert-interval.java)|
240
240
| 218 ||[1272. Remove Interval](https://leetcode.com/problems/remove-interval/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/1272-remove-interval.py)|
241
241
| 219 | O |[252. Meeting Rooms](https://leetcode.com/problems/meeting-rooms/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/252-meeting-rooms.py)[Java]([H]array/[H]array-line-sweep/252-meeting-rooms.java)|
242
242
| 220 | O |[435. Non-overlapping Intervals](https://leetcode.com/problems/non-overlapping-intervals/)|[H]array-line-sweep | compare two intervals each round |[Python]([H]array/[H]array-line-sweep/435-non-overlapping-intervals.py)|
@@ -398,7 +398,7 @@ Feel free to raise issues or post in discussions.
398
398
| 376 ||[909. Snakes and Ladders](https://leetcode.com/problems/snakes-and-ladders/)|[K]graph-bfs | bfs with single source |[Python]([K]graph/[K]graph-bfs/909-snakes-and-ladders.py)|
399
399
| 377 ||[749. Contain Virus](https://leetcode.com/problems/contain-virus/)|[K]graph-bfs | bfs with single source |[Python]([K]graph/[K]graph-bfs/749-contain-virus.py)|
400
400
| 378 ||[694. Number of Distinct Islands](https://leetcode.com/problems/number-of-distinct-islands/)|[K]graph-bfs | bfs with single source |[Python]([K]graph/[K]graph-bfs/694-number-of-distinct-islands.py)|
401
-
| 379 | O |[542. 01 Matrix](https://leetcode.com/problems/01-matrix/)|[K]graph-bfs | bfs with multiple sources |[Python]([K]graph/[K]graph-bfs/542-01-matrix.py)|
401
+
| 379 | O |[542. 01 Matrix](https://leetcode.com/problems/01-matrix/)|[K]graph-bfs | bfs with multiple sources |[Python]([K]graph/[K]graph-bfs/542-01-matrix.py)[Java]([K]graph/[K]graph-bfs/542-01-matrix.java)|
402
402
| 380 | O |[417. Pacific Atlantic Water Flow](https://leetcode.com/problems/pacific-atlantic-water-flow/)|[K]graph-bfs | bfs with multiple sources |[Python]([K]graph/[K]graph-bfs/417-pacific-atlantic-water-flow.py)|
403
403
| 381 | O |[994. Rotting Oranges](https://leetcode.com/problems/rotting-oranges/)|[K]graph-bfs | bfs with multiple sources |[Python]([K]graph/[K]graph-bfs/994-rotting-oranges.py)|
404
404
| 382 ||[286. Walls and Gates](https://leetcode.com/problems/walls-and-gates/)|[K]graph-bfs | bfs with multiple sources |[Python]([K]graph/[K]graph-bfs/286-walls-and-gates.py)|
@@ -499,7 +499,7 @@ Feel free to raise issues or post in discussions.
499
499
| 477 ||[647. Palindromic Substrings](https://leetcode.com/problems/palindromic-substrings/)|[M]dynamic-programming | interval (start from short interval) |[Python]([M]dynamic-programming/[M]dynamic-programming/647-palindromic-substrings.py)|
500
500
| 478 ||[1547. Minimum Cost to Cut a Stick](https://leetcode.com/problems/minimum-cost-to-cut-a-stick/)|[M]dynamic-programming | interval (start from short interval) |[Python]([M]dynamic-programming/[M]dynamic-programming/1547-minimum-cost-to-cut-a-stick.py)|
| 480 | O |[53. Maximum Subarray](https://leetcode.com/problems/maximum-subarray/)|[N]greedy | greedy |[Python]([N]greedy/[N]greedy/53-maximum-subarray.py)|
502
+
| 480 | O |[53. Maximum Subarray](https://leetcode.com/problems/maximum-subarray/)|[N]greedy | greedy |[Python]([N]greedy/[N]greedy/53-maximum-subarray.py)[Java]([N]greedy/[N]greedy/53-maximum-subarray.java)|
503
503
| 481 | O |[134. Gas Station](https://leetcode.com/problems/gas-station/)|[N]greedy | greedy |[Python]([N]greedy/[N]greedy/134-gas-station.py)|
504
504
| 482 | O |[621. Task Scheduler](https://leetcode.com/problems/task-scheduler/)|[N]greedy | greedy |[Python]([N]greedy/[N]greedy/621-task-scheduler.py)|
505
505
| 483 ||[45. Jump Game II](https://leetcode.com/problems/jump-game-ii/)|[N]greedy | greedy |[Python]([N]greedy/[N]greedy/45-jump-game-ii.py)|
0 commit comments