Success is like pregnancy, Everybody congratulates you but nobody knows how many times you were screwed to achieve it.
# | Title | Solution | Time | Space | Difficulty | Tag | Note |
---|---|---|---|---|---|---|---|
21 | Merge Two Sorted Lists | Python | O(n) | O(n) | Easy | Iteratively | |
89 | Partition List | Python | O(n) | O(n) | Easy | CC189 | |
141 | Partition List | Python | O(n) | O(1) | Easy | CC189 | Two Pointers |
160 | Intersection of Two Linked Lists | Python | O(n) | O(1) | Easy | ||
234 | Palindrome Linked List | Python | O(n) | O(1) | Easy | CC189 | Two Pointers |