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