mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-03 12:26:44 +00:00
Applied Non safety
This commit is contained in:
parent
3c76fcef53
commit
44ebb6632b
@ -93,6 +93,7 @@ class SortedLinkedList:
|
||||
self.head = new_node
|
||||
else:
|
||||
temp_node: Node | None = self.head
|
||||
if temp:
|
||||
while temp_node.next_node and temp_node.next_node.data < data:
|
||||
temp_node = temp_node.next_node
|
||||
new_node.next_node = temp_node.next_node
|
||||
@ -156,6 +157,7 @@ class SortedLinkedList:
|
||||
return True
|
||||
|
||||
temp_node: Node | None = self.head
|
||||
if temp_node:
|
||||
while temp_node.next_node:
|
||||
if temp_node.next_node.data == data:
|
||||
temp_node.next_node = temp_node.next_node.next_node
|
||||
|
Loading…
x
Reference in New Issue
Block a user