Skip to content

Commit

Permalink
fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
haroon committed Feb 3, 2019
1 parent 45951c1 commit 71e60e4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion py/datastructures/linkedlists/singlylinkedlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def remove(self, val):
next = self.head
if next and next.val == val:
self.head = next.next
self.head = None
next = None
return

Expand Down

0 comments on commit 71e60e4

Please sign in to comment.