Skip to content

Commit

Permalink
doubly-linked-list: Fix inaccurate instructions
Browse files Browse the repository at this point in the history
closes #1376
  • Loading branch information
senekor committed Sep 16, 2023
1 parent 7328ece commit 15ef9cf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions exercises/practice/doubly-linked-list/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
Write a doubly linked list using unsafe Rust, including an iterator over the list
and a cursor for efficient mutation.

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

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

0 comments on commit 15ef9cf

Please sign in to comment.