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 5833f20 commit a80f087Copy full SHA for a80f087
src/main/java/com/fishercoder/solutions/_21.java
@@ -2,18 +2,6 @@
2
3
import com.fishercoder.common.classes.ListNode;
4
5
-/**
6
- * 21. Merge Two Sorted Lists
7
- *
8
- * Merge two sorted linked lists and return it as a new list.
9
- * The new list should be made by splicing together the nodes of the first two lists.
10
11
- * Example:
12
- * Input: 1->2->4, 1->3->4
13
- * Output: 1->1->2->3->4->4
14
15
- * */
16
-
17
public class _21 {
18
public static class Solution1 {
19
/**
0 commit comments