Given two sorted lists, merge them into one sorted list efficiently.
Constraints
Example
```python >>> merge_sorted_lists([1, 3, 5], [2, 4, 6]) [1, 2, 3, 4, 5, 6] >>> merge_sorted_lists([1, 2, 3], []) [1, 2, 3] >>> merge_sorted_lists([], [1, 1, 2]) [1, 1, 2] >>> merge_sorted_lists([], []) [] ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints