Skip to content

Commit 2834274

Browse files
refactor 23
1 parent 7f0a792 commit 2834274

File tree

1 file changed

+0
-17
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-17
lines changed

src/main/java/com/fishercoder/solutions/_23.java

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,6 @@
55
import java.util.Comparator;
66
import java.util.PriorityQueue;
77

8-
/**
9-
* 23. Merge k Sorted Lists
10-
*
11-
* Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
12-
*
13-
* Example:
14-
*
15-
* Input:
16-
* [
17-
* 1->4->5,
18-
* 1->3->4,
19-
* 2->6
20-
* ]
21-
* Output: 1->1->2->3->4->4->5->6
22-
*
23-
* */
24-
258
public class _23 {
269
public static class Solution1 {
2710
public ListNode mergeKLists(ListNode[] lists) {

0 commit comments

Comments
 (0)