8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6437fb9 commit 700de4fCopy full SHA for 700de4f
src/linked-list/linkedlist.js
@@ -85,25 +85,4 @@ class LinkedList {
85
}
86
87
88
-function test() {
89
- let list = new LinkedList();
90
- list.add(1);
91
- list.add(2);
92
- list.add(3);
93
- list.add(4);
94
-
95
- console.log(list);
96
97
- list.delete(4);
98
99
100
- list.delete(2);
101
102
103
- list.delete(1);
104
105
-};
106
107
-// test();
108
109
module.exports = LinkedList;
0 commit comments