Question

Write a function that combines two sorted list of numbers into single sorted list?

Login to Submit

Examples

Input: [1, 2, 3],  [4, 5, 6]
Output: [1, 2, 3, 4, 5, 6]