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 60478b5 commit cf30a3fCopy full SHA for cf30a3f
Sprint-2/implement_lru_cache/lru_cache.py
@@ -17,7 +17,7 @@ def __init__(self, limit: int):
17
self.size = 0
18
19
20
- #to remove a node frpm linkedlist
+ #to remove a node from linkedlist
21
def _remove_node(self, node: Node):
22
if node.prev:
23
node.prev.next = node.next
0 commit comments