...

/

Challenge: Merge Two Sorted Lists

Challenge: Merge Two Sorted Lists

Try to solve the Merge Two Sorted Lists problem.

We'll cover the following...

Statement

Given two integer lists, nums1 and nums2, of size mm and nn, respectively, sorted in nondecreasing order. Merge nums1 and nums2 into a single list sorted in nondecreasing order.

...