Skip to content

Commit e48df7e

Browse files
committed
test
1 parent 76999e1 commit e48df7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/blankj/easy/_021/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
2525
temp = temp.next;
2626
}
2727
temp.next = l1 != null ? l1 : l2;
28-
return head.next;
28+
return head;
2929
}
3030

3131
public static void main(String[] args) {

0 commit comments

Comments
 (0)