Examples
Input: listA = [-3,-1,9,10], listB = [-10,3,4,6,9]
Output: [-10,-3,-1,3,4,6,9,9,10]
Explanation: Combining the sorted lists [-3, -1, 9, 10] and [-10, 3, 4, 6, 9] results in a single sorted list [-10, -3, -1, 3, 4, 6, 9, 9, 10].
Input: listA = [1,2,4], listB = [1,3,4]
Output: [1,1,2,3,4,4]
Explanation: Combining the sorted lists [1, 2, 4] and [1, 3, 4] results in a single sorted list [1, 1, 2, 3, 4, 4].
Input: listA = [], listB = [0]
Output: [0]
Explanation: Combining the empty list [] with the sorted list [0] results in the list [0].