Skip to content

Commit 33b630c

Browse files
Update
1 parent 221d740 commit 33b630c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Chapter04/append_at_any_location_singly_linkedlist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ def __init__(self, data=None):
77

88
class SinglyLinkedList:
99
def __init__ (self):
10+
self.tail = None
1011
self.head = None
1112
self.size = 0
1213

0 commit comments

Comments
 (0)