We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd5f193 commit bea30f9Copy full SHA for bea30f9
0146.LRU缓存机制/0146-LRU缓存机制.py
@@ -15,7 +15,7 @@ def __init__(self, capacity):
15
self.head = DLLNode(-1, -1, None, None)
16
self.tail = DLLNode(-1, -1, self.head, None)
17
self.head.next = self.tail
18
- self.dic = dict()
+ self.dic = dict()
19
20
def get(self, key):
21
"""
0 commit comments