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 9135980 commit 8d6258cCopy full SHA for 8d6258c
Sprint-2/implement_linked_list/linked_list.py
@@ -32,7 +32,7 @@ def pop_tail(self):
32
raise IndexError("pop_tail from empty linked list")
33
34
value = self.tail.value
35
- self.remove(self.tail) # Delegate actual removal to remove()
+ self.remove(self.tail)
36
return value
37
38
def remove(self, node: Node):
0 commit comments