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
| 002 |[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)|[Java](./Java/Add-Two-Numbers.java)|_O(n)_|_O(n)_| Medium | Math ||
175
175
| 19 |[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)|[Java](./Java/remove-nth-node-from-end-of-list.java)|_O(n)_|_O(1)_| Medium | Two pointers ||
@@ -178,7 +178,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
178
178
| 141 |[Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/)|[Java](./Java/linked-list-cycle.java)|_O(n)_|_O(1)_| Easy | Slow-Fast Pointers ||
179
179
| 142 |[Linked List Cycle II](https://leetcode.com/problems/linked-list-cycle-ii/)|[Java](./Java/linked-list-cycle-ii.java) <br> [C++](./C++/Linked-List-Cycle-II.cpp)|_O(n)_|_O(1)_| Medium | Slow-Fast Pointers ||
| 160 |[Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/)|[Java](./Java/intersection-of-two-linked-lists.java)|_O(n)_|_O(1)_| Easy | Two Pointers ||
181
+
| 160 |[Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/)|[Java](./Java/intersection-of-two-linked-lists.java)|_O(n)_|_O(1)_| Easy | Two Pointers |[Tutorial](https://youtu.be/uozGB0-gbvI)|
182
182
| 186 |[Middle of the Linked List](https://leetcode.com/problems/middle-of-the-linked-list/)|[Java](./Java/middle-of-the-linked-list.java)|_O(n)_|_O(1)_| Easy | Two pointers ||
0 commit comments