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 |
---|---|---|---|---|---|---|---|
234 | Palindrome Linked List | Python | O(n) | O(1) | Easy | CC189 | Two Pointers |
21 | Merge Two Sorted Lists | Python | O(n) | O(n) | Easy | Iteratively | |
89 | Partition List | Python | O(n) | O(n) | Easy | CC189 |