We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e7441 commit da1729cCopy full SHA for da1729c
src/_DataStructures_/LinkedList/LinkedList.test.js
@@ -68,6 +68,7 @@ describe('Data Structures: Linked Lists', () => {
68
list.addAtEnd(10);
69
70
expect(list.length()).toEqual(4);
71
+ expect(list.traverseList()).toEqual([15, 23, 33, 10]);
72
});
73
74
0 commit comments