mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-19 04:07:36 +00:00
fixed typo
This commit is contained in:
commit
3d9263b279
@ -339,7 +339,7 @@ class SortedLinkedList:
|
|||||||
temp=other_list.head
|
temp=other_list.head
|
||||||
while temp:
|
while temp:
|
||||||
self.insert(temp.data)
|
self.insert(temp.data)
|
||||||
temp=temp.next_node
|
temp = temp.next_node
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user