You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def remove(self, value):
n = self.head
last = None
while n != None:
if n.value == value:
if last == None:
self.head = self.head.next
else:
last.next = n.next
return True
last = n **<-- This is missing**
n = n.next
return False