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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
157
157
| 109 |[Convert Sorted List to Binary Search Tree](https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/)|[Java](./Java/convert-sorted-list-to-binary-search-tree.java)|_O(n)_|_O(n)_| Medium | LinkedList ||
158
158
| 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 ||
159
159
| 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
-
| 146 |[LRU Cache](https://leetcode.com/problems/lru-cache/)|[C++](./C++/LRU-Cache.cpp)|_O(1)_|_O(k)_| Medium | Hash Map ||
160
+
| 146 |[LRU Cache](https://leetcode.com/problems/lru-cache/)|[C++](./C++/LRU-Cache.cpp)<br> [Python](./Python/LRUCache.py)|_O(1)_|_O(k)_| Medium | Hash Map ||
161
161
| 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 ||
162
162
| 23 |[Merge K sorted lists](https://leetcode.com/problems/merge-k-sorted-lists/)|[C++](./C++/merge-k-sorted-lists.cpp)|_O(nlogn)_|_O(n)_| Hard | sorting and append ||
163
163
@@ -204,7 +204,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
204
204
205
205
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
0 commit comments