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 221d740 commit 33b630cCopy full SHA for 33b630c
Chapter04/append_at_any_location_singly_linkedlist.py
@@ -7,6 +7,7 @@ def __init__(self, data=None):
7
8
class SinglyLinkedList:
9
def __init__ (self):
10
+ self.tail = None
11
self.head = None
12
self.size = 0
13
0 commit comments