We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94afab0 commit ae22574Copy full SHA for ae22574
src/data-structures/doubly-linked-list/README.zh-CN.md
@@ -51,7 +51,7 @@ Remove(head, value)
51
return true
52
end if
53
n ← head.next
54
- while n = ø and value = n.value
+ while n = ø and value !== n.value
55
n ← n.next
56
end while
57
if n = tail
0 commit comments