You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe "simple-linked-list" was left out of the JavaScript track by accident? Here are the instructions for Linked List:
In simple-linked-list we created a push-down stack using a purely
functional linked list, but if we allow mutability and add another
pointer we can build a very fast deque data structure (Double-Ended
queue).
[...]
Under the hood we'll use the same Element class from
simple-linked-list, but there should be a @next and @prev attributes
that are both writable. @prev should point to the previous Element in
the list.
The text was updated successfully, but these errors were encountered:
Copied from exercism/exercism#1440 reported by @patbl
Maybe "simple-linked-list" was left out of the JavaScript track by accident? Here are the instructions for Linked List:
The text was updated successfully, but these errors were encountered: