Skip to content

Commit 90293ed

Browse files
committed
Update README for problem 146
1 parent 96da5f0 commit 90293ed

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ LeetCode solutions in Python
2929
| 138 | Copy List With Random Pointer | [Solution](problems/linked_list/copy_list_with_random_pointer.py) | Medium | Linked List, Hashing |
3030
| 141 | Linked List Cycle | [Solution](problems/linked_list/linked_list_cycle.py) | Easy | Linked List, Two Pointers |
3131
| 143 | Reorder List | [Solution](problems/linked_list/reorder_list.py) | Medium | Linked List |
32+
| 146 | LRU Cache | [Solution](problems/design/lru_cache.py) | Medium | Design, Linked List |
3233
| 150 | Evaluate Reverse Polish Notation | [Solution](problems/stack/evaluate_reverse_polish_notation.py) | Medium | Stack |
3334
| 153 | Find Minimum In Rotated Sorted Array | [Solution](problems/binary_search/find_minimum_in_rotated_sorted_array.py) | Medium | Binary Search |
3435
| 155 | Min Stack | [Solution](problems/stack/min_stack.py) | Medium | Stack, Design |
File renamed without changes.

tests/design/lru_cache_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from problems.design.lru__cache import LRUCache
3+
from problems.design.lru_cache import LRUCache
44

55

66
class LRUCacheTest(unittest.TestCase):

0 commit comments

Comments
 (0)