Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions prose/05_deques_lls.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Here is the ADT.

- **addfirst(item)** - add `item` to the front of the deque.
- **addlast(item)** - add `item` to the end of the deque.
- **removefirst(item)** - remove and return the first item in the deque.
- **removelast(item)** - remove and return the last item in the deque.
- **removefirst** - remove and return the first item in the deque.
- **removelast** - remove and return the last item in the deque.
- **len** - return the number of items in the deque.


Expand Down