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 9bc71e3 commit 17be791Copy full SHA for 17be791
src/main/java/com/fishercoder/common/utils/LinkedListUtils.java
@@ -27,6 +27,7 @@ public static void printList(ListNode head) {
27
System.out.print(temp.val() + "\t");
28
temp = temp.next;
29
}
30
+ System.out.println();
31
32
33
public static ListNode createSinglyLinkedList(List<Integer> listValues) {
0 commit comments