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
|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)_|
77
+
|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)_|[:tv:](https://youtu.be/8Jq8ikIeF1M)|
78
78
|138|[Copy List with Random Pointer](https://leetcode.com/problems/copy-list-with-random-pointer/#/description)|[Python](./linkedlist/copyRandomList.py)|_O(n)_|_O(n)_|
79
79
80
80
@@ -162,7 +162,8 @@
162
162
|45|[Jump Game II](https://leetcode.com/problems/jump-game-ii/#/description)|[Python ](./dp/55.py)|_O(N^2)_|_O(1)_| TLE with DP/Use Greedy for O(N) Solution |
163
163
|300|[Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/#/description)|[Python ](./dp/300.py)|_O(N^2)_|_O(1)_| Use Binary-Search for NlogN Solution|
0 commit comments