mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-04 21:06:50 +00:00
"Updated whitespace and trailing spaces in SortedLinkedList class"
This commit is contained in:
parent
94d30b9ff3
commit
00086389ad
@ -163,9 +163,10 @@ class SortedLinkedList:
|
||||
temp_node.next_node = temp_node.next_node.next_node
|
||||
if temp_node.next_node is None:
|
||||
self.tail = temp_node
|
||||
self.num_nodes -= 1
|
||||
return True
|
||||
temp_node = temp_node.next_node
|
||||
self.num_nodes -= 1
|
||||
|
||||
return False
|
||||
|
||||
def search(self, data: int) -> bool:
|
||||
@ -251,7 +252,7 @@ class SortedLinkedList:
|
||||
|
||||
Doctests
|
||||
|
||||
>>> linkedList=SortedLinkedListt()
|
||||
>>> linkedList=SortedLinkedList()
|
||||
>>> linkedList.insert(32)
|
||||
>>> linkedList.insert(57)
|
||||
>>> linkedList.insert(45)
|
||||
|
Loading…
x
Reference in New Issue
Block a user