Two sorted linked lists are given as arrays. Implement `mergeTwoSorted(a, b)` returning a single sorted array by merging them.
+ 1 hidden test run on Submit.
Merging two sorted sequences with two pointers is O(n + m) time.
Run your code to see results.