czzonet / leetcode-crasher

leetcode-crasher || leetcode自己解题历程 每天一题
Apache License 2.0
0 stars 0 forks source link

21. Merge Two Sorted Lists #43

Open czzonet opened 4 years ago

czzonet commented 4 years ago

21. Merge Two Sorted Lists

Easy

4804

622

Add to List

Share

Merge two sorted linked lists and return it as a new sorted list. The new list should be made by splicing together the nodes of the first two lists.

Example:

Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4

Accepted

1,091,426

Submissions

2,023,983

czzonet commented 4 years ago

Fail