fixed typo

This commit is contained in:
mjk22071998 2024-10-01 15:25:04 +05:00
commit 3d9263b279

View File

@ -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__":