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.
2 parents 7cf06b4 + c2da935 commit 81b3e03Copy full SHA for 81b3e03
linked-list.md
@@ -22,13 +22,3 @@ conditions. Specifically: `pop` or `shift` will never be called on an
22
empty list.
23
24
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