mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-19 04:07:36 +00:00
Merge branch 'master' of https://github.com/mjk22071998/Python
This commit is contained in:
commit
53bd3be495
@ -337,6 +337,7 @@ class SortedLinkedList:
|
|||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
temp : Optional[Node] = other_list.head
|
temp : Optional[Node] = other_list.head
|
||||||
|
|
||||||
while temp:
|
while temp:
|
||||||
self.insert(temp.data)
|
self.insert(temp.data)
|
||||||
temp = temp.next_node
|
temp = temp.next_node
|
||||||
|
Loading…
x
Reference in New Issue
Block a user