We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89424c1 commit 619c40aCopy full SHA for 619c40a
src/test/java/com/thealgorithms/datastructures/lists/MiddleOfLinkedListTest.java
@@ -45,7 +45,7 @@ void testMiddleNodeEmptyList() {
45
int[] values = {};
46
MiddleOfLinkedList.ListNode head = MiddleOfLinkedList.createList(values);
47
48
- ListNode middle = sol.middleNode(head);
+ MiddleOfLinkedList.ListNode middle = sol.middleNode(head);
49
50
assertNull(middle);
51
}
0 commit comments