Skip to content

Commit 7cfc59d

Browse files
committed
.
1 parent aedaf29 commit 7cfc59d

File tree

1 file changed

+6
-23
lines changed

1 file changed

+6
-23
lines changed

README.md

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Success is like pregnancy, Everybody congratulates you but nobody knows how many
1313

1414

1515

16-
## Linked List Basic
16+
## Linked List Easy
1717
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
1818
|-----|-------| -------- | ---- | ------|------------|---|-----|
1919
|21| [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists) | [Python](./linkedlist/MergeTwoSortedLists.py) | _O(n)_| _O(n)_ | Easy || Iteratively|
@@ -23,41 +23,24 @@ Success is like pregnancy, Everybody congratulates you but nobody knows how many
2323
|203|[Remove Linked List Elements](https://leetcode.com/problems/remove-linked-list-elements/#/description) | [Python](./linkedlist/RemoveLinkedListElements.py) | _O(n)_| _O(1)_ | Easy || |
2424
|206|[Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/#/description) | [Python](./linkedlist/ReverseLinkedList.py) | _O(n)_| _O(1)_ | Easy |CC189| [Video Tutorial](https://www.youtube.com/watch?v=sYcOK51hl-A&t=681s) |
2525
|234|[Palindrome Linked List](https://leetcode.com/problems/palindrome-linked-list/) | [Python](./linkedlist/palindrome.py) | _O(n)_| _O(1)_ | Easy |CC189| Two Pointers|
26-
|2|[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/#/description) | [Python](./linkedlist/addTwoNumbers.py) | _O(n)_| _O(n)_ | Medium |CC189| |
27-
|445| [Add Two Numbers II](https://leetcode.com/problems/add-two-numbers-ii/#/description)| [Python](./linkedlist/addTwoNumbersTwo.py) | _O(n)_| _O(n)_ | Medium |CC189 |Stack|
26+
|83|[Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list/#/description)| [Python](./linkedlist/deleteDuplicates.py) | _O(n)_| _O(1)_ | Easy | ||
2827

29-
## 4/14 Tasks (LinkedList Medium)
28+
## LinkedList Medium
3029
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
3130
|-----|-------| -------- | ---- | ------|------------|---|-----|
31+
|2|[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/#/description) | [Python](./linkedlist/addTwoNumbers.py) | _O(n)_| _O(n)_ | Medium |CC189| |
32+
|445| [Add Two Numbers II](https://leetcode.com/problems/add-two-numbers-ii/#/description)| [Python](./linkedlist/addTwoNumbersTwo.py) | _O(n)_| _O(n)_ | Medium |CC189 |Stack|
3233
|142|[Linked List Cycle II](https://leetcode.com/problems/linked-list-cycle-ii/#/description)| [Python](./linkedlist/detectCycleii.py) | _O(n)_| _O(1)_ | Medium |CC189 |[Video](https://www.youtube.com/watch?v=iZVBVCpmugI&t=1s)|
3334
|328|[Odd Even Linked List](https://leetcode.com/problems/odd-even-linked-list/#/description)| [Python](./linkedlist/oddEvenList.py) | _O(n)_| _O(1)_ | Medium | ||
3435
|143|[Reorder List](https://leetcode.com/problems/reorder-list/#/description)| [Python](./linkedlist/reorder.py) | _O(n)_| _O(1)_ | Medium | ||
3536
|24|[Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/#/solutions)| [Python](./linkedlist/swapPairs.py) | _O(n)_| _O(1)_ | Medium | |[Note](http://imgur.com/a/4G6ng)|
36-
37-
38-
## 4/15 Tasks (LinkedList Medium)
39-
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
40-
|-----|-------| -------- | ---- | ------|------------|---|-----|
41-
|83|[Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list/#/description)| [Python](./linkedlist/deleteDuplicates.py) | _O(n)_| _O(1)_ | Easy | ||
4237
|148|[Sort List](https://leetcode.com/problems/sort-list/#/description)| [Python](./linkedlist/sortList.py) | _O(nlogn)_| _O(1)_ | Medium | ||
4338
|61|[Rotate List](https://leetcode.com/problems/rotate-list/#/description)| [Python](./linkedlist/rotateRight.py) | _O(n)_| _O(1)_ | Medium | ||
4439
|19|[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/#/description)| [Python](./linkedlist/removeNthFromEnd.py) | _O(n)_| _O(1)_ | Medium | ||
45-
46-
47-
## 4/16 Tasks (LinkedList Medium)
48-
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
49-
|-----|-------| -------- | ---- | ------|------------|---|-----|
5040
|138|[Copy List with Random Pointer](https://leetcode.com/problems/copy-list-with-random-pointer/#/description)| [Python](./linkedlist/copyRandomList.py) | _O(n)_| _O(n)_ | Medium | ||
5141

5242

53-
54-
## 4/17 Tasks (Stacks and Queues: CtCi Chapter 3)
55-
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
56-
|-----|-------| -------- | ---- | ------|------------|---|-----|
57-
58-
59-
60-
## 4/18 Tasks (Stacks Easy)
43+
## Stacks Easy
6144
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
6245
|-----|-------| -------- | ---- | ------|------------|---|-----|
6346
|155|[Min Stack](https://leetcode.com/problems/min-stack/#/description)| [Python](./stack_queue/minStack.py) | _O(1)_| _O(n)_ | Easy | ||

0 commit comments

Comments
 (0)