From fa1f930c99bf869e0074515f981cd018da185412 Mon Sep 17 00:00:00 2001 From: Brandon Villa Date: Sun, 20 Dec 2020 13:05:18 -0600 Subject: [PATCH] Add missing step (#345) --- src/data-structures/linked-list/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data-structures/linked-list/README.md b/src/data-structures/linked-list/README.md index 2b8a7507..f357889d 100644 --- a/src/data-structures/linked-list/README.md +++ b/src/data-structures/linked-list/README.md @@ -102,6 +102,7 @@ Remove(head, value) if n.next != ø if n.next = tail tail ← n + tail.next = null end if n.next ← n.next.next return true