| 1 | // This is an input class. Do not edit. |
| 2 | class Node { |
| 3 | constructor(value) { |
| 4 | this.value = value; |
| 5 | this.prev = null; |
| 6 | this.next = null; |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | // Feel free to add new properties and methods to the class. |
| 11 | class DoublyLinkedList { |
nothing calls this directly
no outgoing calls
no test coverage detected