Skip to content

Commit 5beb659

Browse files
committed
Remark and organize new linked list problems
1 parent a8f6004 commit 5beb659

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

problems/linked-list-problems.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
### Basic
44
| Problem | Difficulty |
55
|------------------|------------|
6-
|[707. Design Linked List](../leetcode/707.design-linked-list.md)|Medium|
6+
|**[707. Design Linked List](../leetcode/707.design-linked-list.md)**|Medium|
77

88
### Traversal
99
| Problem | Difficulty |
1010
|------------------|------------|
11-
|[2181. Merge Nodes in Between Zeros](../leetcode/2181.merge-nodes-in-between-zeros.md)|Medium (1333)|
11+
|**[2181. Merge Nodes in Between Zeros](../leetcode/2181.merge-nodes-in-between-zeros.md)**|Medium (1333)|
1212
|[817. Linked List Components](../leetcode/817.linked-list-components.md)|Medium (1428)|
13-
|[725. Split Linked List in Parts](../leetcode/725.split-linked-list-in-parts.md)|Medium|
13+
|**[725. Split Linked List in Parts](../leetcode/725.split-linked-list-in-parts.md)**|Medium|
1414

1515
> * Solved: https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/description/ 1151
1616
> * Solved: https://leetcode.com/problems/find-the-minimum-and-maximum-number-of-nodes-between-critical-points/description/ 1310
17-
> * https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list/description/ m
17+
> * **https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list/description/** m
1818
> * https://leetcode.com/problems/remove-zero-sum-consecutive-nodes-from-linked-list/ 1782
1919
2020
### Remove
2121
| Problem | Difficulty |
2222
|------------------|------------|
23-
|[203. Remove Linked List Elements](../leetcode/203.remove-linked-list-elements.md)|Easy|
23+
|**[203. Remove Linked List Elements](../leetcode/203.remove-linked-list-elements.md)**|Easy|
2424
|[237. Delete Node in a Linked List](../leetcode/237.delete-node-in-a-linked-list.md)|Medium|
2525
|[83. Remove Duplicates from Sorted List](../leetcode/83.remove-duplicates-from-sorted-list.md)|Easy|
26-
|[82. Remove Duplicates from Sorted List II](../leetcode/82.remove-dpulicates-from-sorted-list-ii.md)|Medium|
26+
|**[82. Remove Duplicates from Sorted List II](../leetcode/82.remove-dpulicates-from-sorted-list-ii.md)**|Medium|
2727
|[2487. Remove Nodes From Linked List](../leetcode/2487.remove-nodes-from-linked-list.md)|Medium (1454)|
2828

2929
> * Solved: https://leetcode.com/problems/delete-nodes-from-linked-list-present-in-array/description/ 1341
@@ -32,59 +32,59 @@
3232
| Problem | Difficulty |
3333
|------------------|------------|
3434
> * Solved: https://leetcode.com/problems/insert-greatest-common-divisors-in-linked-list/description/ 1279
35-
> * https://leetcode.com/problems/insertion-sort-list/description/ m
35+
> * **https://leetcode.com/problems/insertion-sort-list/description/** m
3636
3737
### Reverse
3838
| Problem | Difficulty |
3939
|------------------|------------|
40-
|[206. Reverse Linked List](../leetcode/206.reverse-linked-list.md)|Easy|
41-
|[92. Reverse Linked List II](../leetcode/92.reverse-linked-list-ii.md)|Medium|
42-
|[24. Swap Nodes in Pairs](../leetcode/24.swap-nodes-in-pairs.md)|Medium|
40+
|**[206. Reverse Linked List](../leetcode/206.reverse-linked-list.md)**|Easy|
41+
|@@**[92. Reverse Linked List II](../leetcode/92.reverse-linked-list-ii.md)**|Medium|
42+
|@@**[24. Swap Nodes in Pairs](../leetcode/24.swap-nodes-in-pairs.md**)|Medium|
4343

44-
> * Solved, to note: https://leetcode.com/problems/reverse-nodes-in-k-group/description/ h
44+
> * Solved, to note: **https://leetcode.com/problems/reverse-nodes-in-k-group/description/** h
4545
4646
### Two Pointers
4747
| Problem | Difficulty |
4848
|------------------|------------|
49-
|[19. Remove Nth Node From End of List](../leetcode/19.remove-nth-node-from-end-of-list.md)|Medium|
50-
|[143. Reorder List](../leetcode/143.reorder-list.md)|Medium|
51-
|[141. Linked List Cycle](../leetcode/141.linked-list-cycle.md)|Easy|
49+
|**[19. Remove Nth Node From End of List](../leetcode/19.remove-nth-node-from-end-of-list.md)**|Medium|
50+
|@@[143. Reorder List](../leetcode/143.reorder-list.md)|Medium|
51+
|**[141. Linked List Cycle](../leetcode/141.linked-list-cycle.md)**|Easy|
5252
|[142. Linked List Cycle II](../leetcode/142.linked-list-cycle-ii.md)|Medium|
53-
|[328. Odd Even Linked List](../leetcode/328.odd-even-linked-list.md)|Medium|
53+
|**[328. Odd Even Linked List](../leetcode/328.odd-even-linked-list.md)**|Medium|
5454
|[86. Partition List](../leetcode/86.partition-list.md)|Medium|
5555
|[160. Intersection of Two Linked Lists](../leetcode/160.intersection-of-two-linked-lists.md)|Easy|
5656

57-
> * https://leetcode.com/problems/rotate-list/description/ m
57+
> * **https://leetcode.com/problems/rotate-list/description/** m
5858
> * https://leetcode.com/problems/swapping-nodes-in-a-linked-list/description/ 1386
5959
6060
### Middle
6161
| Problem | Difficulty |
6262
|------------------|------------|
63-
|[876. Middle of the Linked List](../leetcode/876.middle-of-the-linked-list.md)|Easy|
63+
|**[876. Middle of the Linked List](../leetcode/876.middle-of-the-linked-list.md)**|Easy|
6464
|[2095. Delete the Middle Node of a Linked List](../leetcode/2095.delete-the-middle-node-of-a-linked-list.md)|Medium|
65-
|[234. Palindrome Linked List](../leetcode/234.palindrome-linked-list.md)|Easy|
65+
|**[234. Palindrome Linked List](../leetcode/234.palindrome-linked-list.md)**|Easy|
6666
> * https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list/ 1317
6767
6868
### Merge
6969
| Problem | Difficulty |
7070
|------------------|------------|
71-
|[21. Merge Two Sorted Lists](../leetcode/21.merge-two-sorted-lists.md)|Easy|
71+
|**[21. Merge Two Sorted Lists](../leetcode/21.merge-two-sorted-lists.md)**|Easy|
7272
|[2. Add Two Numbers](../leetcode/2.add-two-numbers.md)|Medium|
73-
|[23. Merge k Sorted Lists](../leetcode/23.merge-k-sorted-lists.md)|Hard|
74-
|[1669. Merge In Between Linked Lists](../leetcode/1669.merge-in-between-linked-lists.md)|Medium|
75-
|[2181. Merge Nodes in Between Zeros](../leetcode/2181.merge-nodes-in-between-zeros.md)|Medium (1333)|
73+
|**[23. Merge k Sorted Lists](../leetcode/23.merge-k-sorted-lists.md)**|Hard|
74+
|**[1669. Merge In Between Linked Lists](../leetcode/1669.merge-in-between-linked-lists.md)**|Medium|
75+
|@@[2181. Merge Nodes in Between Zeros](../leetcode/2181.merge-nodes-in-between-zeros.md)|Medium (1333)|
7676
> * https://leetcode.com/problems/add-two-numbers-ii/description/ m
7777
> * https://leetcode.com/problems/double-a-number-represented-as-a-linked-list/description/ 1393
7878
7979
### Other
8080
| Problem | Difficulty |
8181
|------------------|------------|
8282
|[1472. Design Browser History](../leetcode/1472.design-browser-history.md)|Medium|
83-
|[138. Copy List with Random Pointer](../leetcode/138.copy-list-with-random-pointers.md)|Medium|
84-
|[146. LRU Cache](../leetcode/146.lru-cache.md)|Medium|
83+
|**[138. Copy List with Random Pointer](../leetcode/138.copy-list-with-random-pointers.md)**|Medium|
84+
|**[146. LRU Cache](../leetcode/146.lru-cache.md)**|Medium|
8585

86-
> * https://leetcode.com/problems/linked-list-random-node/description/ m
86+
> * **https://leetcode.com/problems/linked-list-random-node/description/** m
8787
> ----
88-
> * https://leetcode.com/problems/lfu-cache/description/ hard
88+
> * **https://leetcode.com/problems/lfu-cache/description/** hard
8989
> * https://leetcode.com/problems/all-oone-data-structure/description/ hard
9090
> * https://leetcode.com/problems/design-skiplist/description/ hard

0 commit comments

Comments
 (0)