Skip to content

Commit 15ef9cf

Browse files
committed
doubly-linked-list: Fix inaccurate instructions
closes #1376
1 parent 7328ece commit 15ef9cf

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

exercises/practice/doubly-linked-list/.docs/instructions.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
Write a doubly linked list using unsafe Rust, including an iterator over the list
44
and a cursor for efficient mutation.
55

6-
The doubly linked list is a fundamental data structure in computer science,
7-
often used in the implementation of other data structures. They're
8-
pervasive in functional programming languages, such as Clojure, Erlang,
9-
or Haskell, but far less common in imperative languages such as Ruby or
10-
Python.
6+
The doubly linked list is a fundamental data structure in computer science.
117

128
Each node in a doubly linked list contains data and pointers to the next
139
and previous node, if they exist.

0 commit comments

Comments
 (0)