Skip to content

Commit 81b3e03

Browse files
committed
Merge pull request #194 from cebial/linked-list
Update linked-list to remove outdated instructions
2 parents 7cf06b4 + c2da935 commit 81b3e03

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

linked-list.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,3 @@ conditions. Specifically: `pop` or `shift` will never be called on an
2222
empty list.
2323

2424
If you want to know more about linked lists, check [Wikipedia](https://en.wikipedia.org/wiki/Linked_list).
25-
26-
---
27-
28-
In languages that do not have good support for mutability (such as
29-
Elixir or Erlang), you may choose to implement a functional list where
30-
shift and pop have amortized O(1) time. The simplest data structure for
31-
this will have a pair of linked lists for the front and back, where
32-
iteration order is front ++ reverse back.
33-
34-

0 commit comments

Comments
 (0)