Challenge 2: Merge Two Sorted Arrays
In this challenge, you are given two sorted arrays. Merge them into one array, which should also be sorted.
We'll cover the following...
Problem statement
Implement a function mergeArrays(int arr1[], int arr2[], int arr1Size,int arr2Size)
which merges two sorted arrays into another ...