We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af64d12 commit a8d7435Copy full SHA for a8d7435
src/data-structures/linked-list/README.md
@@ -76,10 +76,10 @@ Remove(head, value)
76
end if
77
return true
78
79
- while n.next = ø and n.next.value = value
+ while n.next != ø and n.next.value != value
80
n ← n.next
81
end while
82
- if n.next = ø
+ if n.next != ø
83
if n.next = tail
84
tail ← n
85
0 commit comments