We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98646de commit 7231786Copy full SHA for 7231786
src/_DataStructures_/DoublyLinkedList/index.js
@@ -53,7 +53,7 @@ class DoublyLinkedList {
53
return this.size;
54
}
55
56
- display() {
+ traverse() {
57
let address = this.head.next;
58
const elements = [];
59
while (address !== this.tail) {
0 commit comments