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
|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 |||
28
27
29
-
## 4/14 Tasks (LinkedList Medium)
28
+
## LinkedList Medium
30
29
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
|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|
32
33
|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)|
33
34
|328|[Odd Even Linked List](https://leetcode.com/problems/odd-even-linked-list/#/description)|[Python](./linkedlist/oddEvenList.py)|_O(n)_|_O(1)_| Medium |||
34
35
|143|[Reorder List](https://leetcode.com/problems/reorder-list/#/description)|[Python](./linkedlist/reorder.py)|_O(n)_|_O(1)_| Medium |||
35
36
|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|
|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 |||
42
37
|148|[Sort List](https://leetcode.com/problems/sort-list/#/description)|[Python](./linkedlist/sortList.py)|_O(nlogn)_|_O(1)_| Medium |||
43
38
|61|[Rotate List](https://leetcode.com/problems/rotate-list/#/description)|[Python](./linkedlist/rotateRight.py)|_O(n)_|_O(1)_| Medium |||
44
39
|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|
|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 |||
51
41
52
42
53
-
54
-
## 4/17 Tasks (Stacks and Queues: CtCi Chapter 3)
55
-
| # | Title | Solution | Time | Space | Difficulty |Tag| Note|
0 commit comments