Merge Two Sorted Arrays
Directions
Merge Two Sorted Arrays
Examples:
[0, 3, 4, 31], [3, 4, 6, 30] ---> [0, 3, 3, 4, 4, 30, 31]
Solutions
Solution #1