Update the example again
All checks were successful
Deploy to Homelab / deploy (push) Successful in 6s
All checks were successful
Deploy to Homelab / deploy (push) Successful in 6s
This commit is contained in:
Binary file not shown.
@@ -19,8 +19,8 @@ class LinkedList:
|
|||||||
self.head=Node(value=thing)
|
self.head=Node(value=thing)
|
||||||
self.tail=self.head
|
self.tail=self.head
|
||||||
return
|
return
|
||||||
self.tail.nextNode=Node(value=thing)
|
self.tail.next_node=Node(value=thing)
|
||||||
self.tail=self.tail.nextNode
|
self.tail=self.tail.next_node
|
||||||
|
|
||||||
|
|
||||||
list1=LinkedList()
|
list1=LinkedList()
|
||||||
@@ -28,8 +28,6 @@ list1.append('hi')
|
|||||||
list1.append('hi again')
|
list1.append('hi again')
|
||||||
list1.append('why am I saying hi so many times?')
|
list1.append('why am I saying hi so many times?')
|
||||||
print(list1.head.value)
|
print(list1.head.value)
|
||||||
print(list1.head.nextNode.value)
|
print(list1.head.next_node.value)
|
||||||
print(list1.head.nextNode.nextNode.value)
|
print(list1.head.next_node.next_node.value)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user