Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2b2bfb5

Browse files
Solved 23
1 parent ff1bbaa commit 2b2bfb5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

‎src/leetcode/editor/en/[23]Merge k Sorted Lists.java‎ renamed to ‎src/leetcode/editor/en/[0023] Merge k Sorted Lists.java‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ public ListNode mergeKLists(ListNode[] lists) {
3838
}
3939
//leetcode submit region end(Prohibit modification and deletion)
4040

41-
publicstatic class ListNode {
42-
int val;
43-
ListNode next;
44-
ListNode() {}
45-
ListNode(int val) { this.val = val; }
46-
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
47-
}
41+
public class ListNode {
42+
int val;
43+
ListNode next;
44+
ListNode() {}
45+
ListNode(int val) { this.val = val; }
46+
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
47+
}
4848
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /