You have two sorted arrays - how can you effectively merge them into one giant sorted array?
Sigiloso
Mergesort works, but you don't need to use it in this case. Since the two lists are already sorted, just iterate through them both at the same time, appending the next-highest element from the two lists into a new list. O(n+m) time.