Skip to content

Commit d1e415a

Browse files
committed
Remove all unsolved problem listing for each topics
1 parent d08e148 commit d1e415a

15 files changed

+74
-238
lines changed

leetcode/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
> TODO
55
* [Array](./array-problems.md)
66
* [String](./string-problems.md)
7+
* [Two Pointers](./two-pointers-problems.md)
8+
* [Sliding Window](./sliding-window-problems.md)
9+
* [Interval](./interval-problems.md)
710
* [Hash Table](./hash-table-problems.md)
811
* [Binary Search](./binary-search-problems.md)
912
* [Linked List](./linked-list-problems.md)

leetcode/array-problems.md

Lines changed: 0 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -20,63 +20,6 @@
2020
|[136. Single Number](../leetcode/136.single-number.md)|Easy|
2121
|[31. Next Permutation](../leetcode/31.next-permutation.md)|Medium|
2222

23-
> * https://leetcode.com/problems/valid-palindrome-ii/ 8k e
24-
> * https://leetcode.com/problems/diagonal-traverse-ii/
25-
> * https://leetcode.com/problems/number-of-matching-subsequences/ 5k m
26-
> ----
27-
> * https://leetcode.com/problems/burst-balloons/ 7k h
28-
> * https://leetcode.com/problems/reverse-pairs/ 6k h
29-
> * https://leetcode.com/problems/couples-holding-hands/ 2k h
30-
> * https://leetcode.com/problems/swim-in-rising-water/ 3k h
31-
> * https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k/ 3k h
32-
> * https://leetcode.com/problems/maximum-performance-of-a-team/ 3k h
33-
> * https://leetcode.com/problems/minimize-deviation-in-array/ 2k h
34-
35-
36-
### Two Pointers
37-
| Problem | Difficulty |
38-
|------------------|------------|
39-
|[167. Two Sum II - Input Array Is Sorted](../leetcode/167.two-sum-ii-input-array-is-sorted.md)|Medium|
40-
|[15. 3Sum](../leetcode/15.3sum.md)|Medium|
41-
|[16. 3Sum Closest](../leetcode/16.3sum-closest.md)|Medium|
42-
|[11. Container With Most Water](../leetcode/11.container-with-most-water.md)|Medium|
43-
|[977. Squares of a Sorted Array](../leetcode/977.squares-of-a-sorted-array.md)|Easy|
44-
|[283. Move Zeroes](../leetcode/283.move-zeros.md)|Easy|
45-
|[26. Remove Duplicates from Sorted Array](../leetcode/26.remove-duplicates-from-sorted-array.md)|Easy|
46-
|[80. Remove Duplicates from Sorted Array II](../leetcode/80.remove-duplicates-from-sorted-array-ii.md)|Medium|
47-
|[905. Sort Array By Parity](../leetcode/905.sort-array-by-parity.md)|Easy|
48-
49-
### Sliding Window
50-
| Problem | Difficulty |
51-
|------------------|------------|
52-
|[438. Find All Anagrams in a String](../leetcode/438.find-all-anagrams-in-a-string.md)|Medium|
53-
|[567. Permutation in String](../leetcode/567.permutation-in-string.md)|Medium|
54-
|[3. Longest Substring Without Repeating Characters](../leetcode/3.longest-substring-without-repeating-characters.md)|Medium|
55-
|[1004. Max Consecutive Ones III](../leetcode/1004.max-consecutive-ones-iii.md)|Medium|
56-
|[209. Minimum Size Subarray Sum](../leetcode/209.minimum-size-subarray-sum.md)|Medium|
57-
|[424. Longest Repeating Character Replacement](../leetcode/424.longest-repeating-character-replacement.md)|Medium|
58-
|[713. Subarray Product Less Than K](../leetcode/713.subarray-product-less-than-k.md)|Medium|
59-
|[674. Longest Continuous Increasing Subsequence](../leetcode/674.longest-continuous-increasing-subsequence.md)|Easy|
60-
|[76. Minimum Window Substring](../leetcode/76.minimum-window-substring.md)|Hard|
61-
|[239. Sliding Window Maximum](../leetcode/239.sliding-window-maximium.md)|Hard|
62-
|[1876. Substrings of Size Three with Distinct Characters](../leetcode/1876.substrings-of-size-three-with-distinct-characters.md)|Easy|
63-
|[2461. Maximum Sum of Distinct Subarrays With Length K](../leetcode/2461.maximum-sum-of-distinct-subarrays-with-length-k.md)|Medium|
64-
|[2875. Minimum Size Subarray in Infinite Array](../leetcode/2875.minimum-size-subarray-in-infinite-array.md)|Medium|
65-
|[904. Fruit Into Baskets](../leetcode/904.fruit-into-baskets.md)|Medium|
66-
67-
> * https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero/ 5k m
68-
> * https://leetcode.com/problems/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit/ 4k m
69-
> * https://leetcode.com/problems/maximum-points-you-can-obtain-from-cards/ 6k m
70-
> * https://leetcode.com/problems/count-number-of-nice-subarrays/ 4k m
71-
> * https://leetcode.com/problems/binary-subarrays-with-sum/ 3k m
72-
> * https://leetcode.com/problems/longest-nice-subarray/description/ 1k m
73-
> * https://leetcode.com/problems/word-subsets 3k m
74-
> * https://leetcode.com/problems/frequency-of-the-most-frequent-element
75-
76-
> ----
77-
> * https://leetcode.com/problems/subarrays-with-k-different-integers/ 4k h
78-
> * https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k/ 4k h
79-
8023
### [Sorting](../topics/sorting.md)
8124
| Problem | Difficulty |
8225
|------------------|------------|
@@ -86,27 +29,3 @@
8629
|[148. Sort List](../leetcode/148.sort-list.md)|Medium|
8730

8831
> Solved: https://leetcode.com/problems/height-checker/
89-
90-
### Intervals
91-
| Problem | Difficulty |
92-
|------------------|------------|
93-
|[56. Merge Intervals](../leetcode/56.merge-intervals.md)|Medium|
94-
|[57. Insert Interval](../leetcode/57.insert-interval.md)|Medium|
95-
|[986. Interval List Intersections](../leetcode/986.interval-list-intersections.md)|Medium|
96-
|[729. My Calendar I](../leetcode/729.my-calendar-i.md)|Medium|
97-
|[452. Minimum Number of Arrows to Burst Balloons](../leetcode/452.minimum-number-of-arrows-to-burst-balloons.md)|Medium|
98-
|[1094. Car Pooling](../leetcode/1094.car-pooling.md)|Medium|
99-
100-
> Study guidelines: https://leetcode.com/discuss/study-guide/2166045/ (Have reviwed the problem listing)
101-
> Listing: https://leetcode.com/problem-list/52dlem1s/
102-
> Video: https://www.bilibili.com/video/BV1qY411n7Qs/?vd_source=2f62e0e1762a6703c96771d3baa35968
103-
> * https://leetcode.cn/problems/my-calendar-i/solutions/1646264/by-jiang-hui-4-pyfn/
104-
> * https://leetcode.com/problems/non-overlapping-intervals/description/ 8k m
105-
> * https://leetcode.com/problems/number-of-flowers-in-full-bloom 1k h
106-
> * https://leetcode.com/problems/points-that-intersect-with-cars/description/
107-
> * https://leetcode.com/problems/my-calendar-ii/description/ 2k m
108-
> * https://leetcode.com/problems/maximum-profit-in-job-scheduling/
109-
> * https://leetcode.com/problems/number-of-flowers-in-full-bloom/
110-
111-
> ----
112-
> * https://leetcode.com/problems/maximum-population-year/description/ 1k e

leetcode/binary-search-problems.md

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## [Binary Search](../topics/binary-search.md)
2+
### Basic
23
| Problem | Difficulty |
34
|------------------|------------|
45
|[704. Binary Search](../leetcode/704.binary-search.md)|Easy|
@@ -18,6 +19,7 @@
1819
|[33. Search in Rotated Sorted Array](../leetcode/33.search-in-rotated-sorted-array.md)|Medium|
1920
|[153. Find Minimum in Rotated Sorted Array](../leetcode/153.find-minimum-in-rotated-sorted-array.md)|Medium|
2021

22+
> * https://leetcode.com/problems/search-in-rotated-sorted-array-ii/ 8k m
2123
2224
### Search in Matrix
2325
| Problem | Difficulty |
@@ -31,26 +33,18 @@
3133
| Problem | Difficulty |
3234
|------------------|------------|
3335
|[875. Koko Eating Bananas](../leetcode/875.koko-eating-bananas.md)|Medium|
36+
|[1870. Minimum Speed to Arrive on Time](../leetcode/1870.minimum-speed-to-arrive-on-time.md)|Medium|
37+
|[2187. Minimum Time to Complete Trips](../leetcode/2187.minimum-time-to-complete-trips.md)|Medium|
3438
|[2560. House Robber IV](../leetcode/2560.house-robber-iv.md)|Medium|
3539

36-
> * https://leetcode.com/problems/search-in-rotated-sorted-array-ii/ 8k m
37-
> * https://leetcode.com/problems/capacity-to-ship-packages-within-d-days 9k m
38-
> * https://leetcode.com/problems/peak-index-in-a-mountain-array/ 6k
39-
> * https://leetcode.com/problems/count-negative-numbers-in-a-sorted-matrix/ 5k e
40-
> * https://leetcode.com/problems/minimize-the-maximum-difference-of-pairs m 2k
41-
> * https://leetcode.com/problems/special-array-with-x-elements-greater-than-or-equal-x/
42-
> * Search on value:
43-
> * https://leetcode.com/problems/minimum-number-of-days-to-make-m-bouquets/description/
44-
> * https://leetcode.com/problems/minimum-time-to-complete-trips/description/
45-
> * https://leetcode.com/problems/minimized-maximum-of-products-distributed-to-any-store/description/
46-
>
47-
> Maximize the minimum value / Minimize the maximum value: 最小化最大值
48-
> * https://leetcode.com/problems/split-array-largest-sum/description/ 10k h
49-
> * https://leetcode.com/problems/path-with-minimum-effort/description/ 5k m
50-
> * https://leetcode.com/problems/magnetic-force-between-two-balls/
51-
> * https://leetcode.cn/problems/house-robber-iv/
52-
> ----
53-
> * https://leetcode.com/problems/count-of-smaller-numbers-after-self/ 9k h
54-
> * https://leetcode.com/problems/russian-doll-envelopes/ 6k h
55-
> * https://leetcode.com/problems/median-of-two-sorted-arrays/ 26k
56-
> * https://leetcode.com/problems/count-of-range-sum/ 2k h
40+
> * https://leetcode.com/problems/capacity-to-ship-packages-within-d-days 1725
41+
> * https://leetcode.com/problems/maximum-candies-allocated-to-k-children/description/ 1646
42+
43+
### Minimize the Maximum Value
44+
> * https://leetcode.com/problems/split-array-largest-sum/description/
45+
> * https://leetcode.com/problems/minimized-maximum-of-products-distributed-to-any-store/description/
46+
> * https://leetcode.com/problems/minimum-limit-of-balls-in-a-bag/description/ 1940
47+
> * https://leetcode.com/problems/path-with-minimum-effort/description/ 1948
48+
49+
### Maximize the Minimum Value
50+
> * https://leetcode.com/problems/magnetic-force-between-two-balls/description/

leetcode/bst-problems.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,4 @@
1414
|[530. Minimum Absolute Difference in BST](../leetcode/530.minimum-absolute-difference-in-bst.md)|Easy|
1515
|[1382. Balance a Binary Search Tree](../leetcode/1382.balance-a-binary-search-tree.md)|Medium|
1616

17-
> * https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/ 7k m
18-
> * Solved: https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/ 4k m
19-
> * https://leetcode.com/problems/unique-binary-search-trees-ii/ 7k m
20-
> * https://leetcode.com/problems/range-sum-of-bst/ 5k e
21-
> * https://leetcode.com/problems/construct-binary-search-tree-from-preorder-traversal/ 4k m
22-
> * https://leetcode.com/problems/convert-bst-to-greater-tree/ 5k m -> https://leetcode.com/problems/kth-smallest-element-in-a-bst/description/
23-
> * https://leetcode.com/problems/all-elements-in-two-binary-search-trees/ 3k m
24-
> * https://leetcode.com/problems/serialize-and-deserialize-bst/ 2k m
17+
> * Solved: https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/ 4k m

leetcode/dynamic-programming-problems.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@
3535
|[518. Coin Change 2](../leetcode/518.coin-change-2.md)|Medium|
3636
|[1155. Number of Dice Rolls With Target Sum](../leetcode/1155.number-of-dice-rolls-with-target-sum.md)|Medium|
3737

38-
> * https://leetcode.com/problems/triangle/ 9k m
39-
> * https://leetcode.com/problems/combination-sum-iv/ 5k m
40-
> * https://leetcode.com/problems/last-stone-weight-ii/ 2k m
41-
> * https://leetcode.com/problems/ones-and-zeroes/ 5k m
42-
> * https://leetcode.com/problems/integer-break/ 5k m
43-
4438
### LCS + LIS + Palindrome
4539
| Problem | Difficulty |
4640
|------------------|------------|
@@ -52,12 +46,6 @@
5246
|[5. Longest Palindromic Substring](../leetcode/5.longest-palindromic-substring.md)|Medium|
5347
|[647. Palindromic Substrings](../leetcode/647.palindromic-substrings.md)|Medium|
5448

55-
> * https://leetcode.com/problems/distinct-subsequences/ 4k h
56-
> * https://leetcode.com/problems/max-dot-product-of-two-subsequences/ h
57-
> * https://leetcode.com/problems/longest-string-chain/ 7k m
58-
> * https://leetcode.com/problems/russian-doll-envelopes/ 4k h
59-
> * https://leetcode.com/problems/maximum-length-of-pair-chain/ 4k m
60-
6149
### Buy and Sell Stock
6250
| Problem | Difficulty |
6351
|------------------|------------|
@@ -66,26 +54,6 @@
6654
|[123. Best Time to Buy and Sell Stock III](../leetcode/123.best-time-to-buy-and-sell-stock-iii.md)|Hard|
6755
|[309. Best Time to Buy and Sell Stock with Cooldown](../leetcode/309.best-time-to-buy-and-sell-stock-with-cooldown.md)|Medium|
6856

69-
### Other
70-
> * Solved: https://leetcode.com/problems/pascals-triangle/ 9k e
71-
> * https://leetcode.com/problems/out-of-boundary-paths/description 4k m
72-
> * https://leetcode.com/problems/delete-and-earn/ 5k m
73-
> * https://leetcode.com/problems/minimum-falling-path-sum/ 5k m
74-
> * https://leetcode.com/problems/maximal-rectangle/ 6k h
75-
> * https://leetcode.com/problems/edit-distance/ 8k h
76-
> * https://leetcode.com/problems/longest-increasing-path-in-a-matrix/ 6k h
77-
> * https://leetcode.com/problems/dungeon-game/ 4k h
78-
> * https://leetcode.com/problems/minimum-cost-tree-from-leaf-values/
79-
> * https://leetcode.com/problems/counting-bits/ 8k e
80-
> * https://leetcode.com/problems/interleaving-string/ 6k m
81-
> * https://leetcode.com/problems/arithmetic-slices/ 4k m
82-
> * https://leetcode.com/problems/cherry-pickup/ 3k h
83-
> * https://leetcode.com/problems/cherry-pickup-ii/
84-
> * https://leetcode.com/problems/super-egg-drop/ 3k h
85-
> * https://leetcode.com/problems/minimum-cost-to-cut-a-stick/ 3k h
86-
> * https://leetcode.com/problems/arithmetic-slices-ii-subsequence/ 2k h
87-
> * https://leetcode.com/problems/maximum-profit-in-job-scheduling/
88-
8957
### Problem Lists
9058
> * https://leetcode.com/discuss/general-discussion/662866/dp-for-beginners-problems-patterns-sample-solutions
9159
> * https://leetcode.com/discuss/general-discussion/592146/dynamic-programming-summary

leetcode/graph-problems.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -59,27 +59,4 @@
5959
|[980. Unique Paths III](../leetcode/980.unique-paths-iii.md)|Hard|
6060

6161
> * Solved, topological sort: https://leetcode.com/problems/parallel-courses-iii/
62-
> * Solved: https://leetcode.com/problems/restore-the-array-from-adjacent-pairs/description/
63-
> * https://leetcode.com/problems/most-stones-removed-with-same-row-or-column 5k m
64-
> * https://leetcode.com/problems/clone-graph/ 7k m
65-
> * https://leetcode.com/problems/find-eventual-safe-states/ 5k m
66-
> * https://leetcode.com/problems/time-needed-to-inform-all-employees/ 4k m
67-
> * https://leetcode.com/problems/number-of-enclaves/ 3k m
68-
> * https://leetcode.com/problems/number-of-ways-to-arrive-at-destination/ 3k m
69-
> * https://leetcode.com/problems/count-sub-islands 2k m
70-
> * https://leetcode.com/problems/as-far-from-land-as-possible/ 3k m
71-
> * https://leetcode.com/problems/word-ladder-ii/ 5k h
72-
> * https://leetcode.com/problems/find-the-safest-path-in-a-grid/description/
73-
> ----
74-
> * https://leetcode.com/problems/path-with-minimum-effort 5k m
75-
> * https://leetcode.com/problems/bus-routes 4k h
76-
> * https://leetcode.com/problems/dungeon-game/ 5k h
77-
> * https://leetcode.com/problems/number-of-increasing-paths-in-a-grid/ 2k h
78-
> * https://leetcode.com/problems/detonate-the-maximum-bombs/description/ 3k m
79-
> * https://leetcode.com/problems/count-unreachable-pairs-of-nodes-in-an-undirected-graph/ 2k m
80-
> * https://leetcode.com/problems/regions-cut-by-slashes 4k m
81-
82-
> Shortest Path:
83-
> * https://leetcode.com/problems/minimum-cost-to-reach-destination-in-time/ h
84-
> * https://leetcode.com/problems/shortest-path-in-a-grid-with-obstacles-elimination/ 4k h
85-
> * https://leetcode.com/problems/design-graph-with-shortest-path-calculator/ h
62+
> * Solved: https://leetcode.com/problems/restore-the-array-from-adjacent-pairs/description/

leetcode/greedy-problems.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,3 @@
99
|[134. Gas Station](../leetcode/134.gas-station.md)|Medium|
1010
|[135. Candy](../leetcode/135.candy.md)|Hard|
1111
|[455. Assign Cookies](../leetcode/455.assign-cookies.md)|Easy|
12-
13-
> * https://leetcode.com/problems/remove-k-digits/ 7k m
14-
> * https://leetcode.com/problems/remove-duplicate-letters/ 6k m
15-
> * https://leetcode.com/problems/wiggle-subsequence/ 5k m
16-
> * https://leetcode.com/problems/queue-reconstruction-by-height/ 7k m
17-
> * https://leetcode.com/problems/reduce-array-size-to-the-half/ 3k m
18-
> * https://leetcode.com/problems/max-consecutive-ones/ 4k e
19-
> * https://leetcode.com/problems/two-city-scheduling/ 4k m
20-
> * https://leetcode.com/problems/wildcard-matching/ 6k h

leetcode/hash-table-problems.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
|[1002. Find Common Characters](../leetcode/1002.find-common-characters.md)|Easy|
1212
|[290. Word Pattern](../leetcode/290.word-pattern.md)|Easy|
1313
|[36. Valid Sudoku](../leetcode/36.valid-sudoku.md)|Medium|
14-
> ----
15-
> * https://leetcode.com/problems/naming-a-company h
16-
> * https://leetcode.com/problems/n-repeated-element-in-size-2n-array/ 1k e
1714

1815
### Cyclic Sort
1916
| Problem | Difficulty |
@@ -29,11 +26,4 @@
2926
|------------------|------------|
3027
|[1588. Sum of All Odd Length Subarrays](../leetcode/1588.sum-of-all-odd-length-subarrays.md)|Easy|
3128
|**[560. Subarray Sum Equals K](../leetcode/560.subarray-sum-equals-k.md)**|Medium|
32-
|[2559. Count Vowel Strings in Ranges](../leetcode/2559.count-vowel-strings-in-ranges.md)|Medium|
33-
> * https://leetcode.com/problems/contiguous-array/description/ 7k m
34-
> * https://leetcode.com/problems/binary-subarrays-with-sum/description/ 3k m
35-
> * https://leetcode.com/problems/sum-of-absolute-differences-in-a-sorted-array/ 2k m
36-
> * https://leetcode.com/problems/continuous-subarray-sum/ 5k m
37-
> * https://leetcode.com/problems/subarray-sums-divisible-by-k/ 6k m
38-
> * https://leetcode.com/problems/minimum-penalty-for-a-shop m
39-
> * https://leetcode.com/problems/count-number-of-nice-subarrays/description/
29+
|[2559. Count Vowel Strings in Ranges](../leetcode/2559.count-vowel-strings-in-ranges.md)|Medium|

leetcode/heap-problems.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,3 @@
1616

1717
> * Solved: https://leetcode.com/problems/ipo/ 4k h
1818
> https://leetcode.com/problems/kth-largest-element-in-a-stream/
19-
20-
> * https://leetcode.com/problems/the-skyline-problem/ 5k h
21-
> * https://leetcode.com/problems/course-schedule-iii/ 3k h
22-
> * https://leetcode.com/problems/minimum-number-of-refueling-stops/ 4k h
23-
> * https://leetcode.com/problems/smallest-range-covering-elements-from-k-lists/ 3k h

leetcode/interval-problems.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Intervals
2+
| Problem | Difficulty |
3+
|------------------|------------|
4+
|[56. Merge Intervals](../leetcode/56.merge-intervals.md)|Medium|
5+
|[57. Insert Interval](../leetcode/57.insert-interval.md)|Medium|
6+
|[986. Interval List Intersections](../leetcode/986.interval-list-intersections.md)|Medium|
7+
|[729. My Calendar I](../leetcode/729.my-calendar-i.md)|Medium|
8+
|[452. Minimum Number of Arrows to Burst Balloons](../leetcode/452.minimum-number-of-arrows-to-burst-balloons.md)|Medium|
9+
|[1094. Car Pooling](../leetcode/1094.car-pooling.md)|Medium|
10+
11+
### Resources
12+
* Study guidelines: https://leetcode.com/discuss/study-guide/2166045/ (Have reviwed the problem listing)
13+
* Listing: https://leetcode.com/problem-list/52dlem1s/
14+
* Video: https://www.bilibili.com/video/BV1qY411n7Qs/?vd_source=2f62e0e1762a6703c96771d3baa35968
15+
16+
> * https://leetcode.cn/problems/my-calendar-i/solutions/1646264/by-jiang-hui-4-pyfn/
17+
> * https://leetcode.com/problems/non-overlapping-intervals/description/ 8k m
18+
> * https://leetcode.com/problems/number-of-flowers-in-full-bloom 1k h
19+
> * https://leetcode.com/problems/points-that-intersect-with-cars/description/
20+
> * https://leetcode.com/problems/my-calendar-ii/description/ 2k m
21+
> * https://leetcode.com/problems/maximum-profit-in-job-scheduling/
22+
> * https://leetcode.com/problems/number-of-flowers-in-full-bloom/
23+
> * https://leetcode.com/problems/maximum-population-year/description/ 1k e

leetcode/linked-list-problems.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,3 @@
2424
|[86. Partition List](../leetcode/86.partition-list.md)|Medium|
2525
|[138. Copy List with Random Pointer](../leetcode/138.copy-list-with-random-pointers.md)|Medium|
2626
|[2181. Merge Nodes in Between Zeros](../leetcode/2181.merge-nodes-in-between-zeros.md)|Medium|
27-
28-
> * https://leetcode.com/problems/split-linked-list-in-parts/description/ 4k m
29-
> * https://leetcode.com/problems/reverse-nodes-in-k-group/ 10k h
30-
> * https://leetcode.com/problems/rotate-list/ 9k m
31-
> * https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list/ 3k m
32-
> * https://leetcode.com/problems/remove-zero-sum-consecutive-nodes-from-linked-list/
33-
> * https://leetcode.com/problems/remove-nodes-from-linked-list/description/
34-
> * https://leetcode.com/problems/double-a-number-represented-as-a-linked-list/
35-
> * https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/
36-
> ----
37-
> * https://leetcode.com/problems/insertion-sort-list/ 3k m

0 commit comments

Comments
 (0)