initial commit

This commit is contained in:
Veronika Minina 2026-05-16 18:56:48 +03:00
parent 4f147b1f47
commit f08b18dc34

View File

@ -39,7 +39,7 @@ def ll_delete(head, name):
current = head
while current['next'] is not None:
if current['next']['name'] == name:
current['next']==current['next']['next']
current['next']=current['next']['next']
return head
current=current['next']
return head