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 5e450f9 commit 0674277Copy full SHA for 0674277
Chapter04/doubly_linked_list.py
@@ -11,7 +11,7 @@ def __init__ (self):
11
self.count = 0
12
13
def append(self, data):
14
- #Append an item to the list.
+ #Append an item at the end of the list.
15
new_node = Node(data, None, None)
16
if self.head is None:
17
self.head = new_node
0 commit comments