Rafal Truszkowski
Results
1
comments of
Rafal Truszkowski
I also needed `removeGivenNode` and `restoreGivenNode` functions. I created a new class locally and extended this LinkedList with the following implementation: ``` removeGivenNode: function (node) { node.prev.next = node.next; node.next.prev...