Skip to content

Commit a80f087

Browse files
refactor 21
1 parent 5833f20 commit a80f087

File tree

1 file changed

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

1 file changed

+0
-12
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,6 @@
22

33
import com.fishercoder.common.classes.ListNode;
44

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-
175
public class _21 {
186
public static class Solution1 {
197
/**

0 commit comments

Comments
 (0)