You have the sorted array of N numbers, src_arr, and an additional number x. The goal is for your code to return the sorted array, dst_arr, of N+1 numbers that include all those of arr as well as x.
Example: If src_arr=[2,5,6] and x=4, then dst_arr=[2,4,5,6]
You have a sorted array of N numbers, arr, and an additional number x. The goal is for your code to return a sorted array of N+1 numbers that include all those of arr as well as x. This time you want to write a recursive algorithm, i.e., a functions that calls itself for different sizes of its input array