mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-08 06:45:54 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
3d9263b279
commit
99baa932fc
@ -336,7 +336,7 @@ class SortedLinkedList:
|
||||
self.tail = other_list.tail
|
||||
return
|
||||
else:
|
||||
temp=other_list.head
|
||||
temp = other_list.head
|
||||
while temp:
|
||||
self.insert(temp.data)
|
||||
temp = temp.next_node
|
||||
|
Loading…
x
Reference in New Issue
Block a user