We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49699af commit 66019e6Copy full SHA for 66019e6
other/lfu_cache.py
@@ -25,7 +25,7 @@ def __init__(self, key: T | None, val: U | None):
25
26
def __repr__(self) -> str:
27
return f"Node: key: {self.key}, val: {self.val}, freq: {lf.freq}, "
28
- "has next: {self.next is not None}, has prev: {self.prev is not None}"
+ "has next: {self.next is not None}, has prev: {self.prev is not None}"
29
30
31
class DoubleLinkedList(Generic[T, U]):
0 commit comments