Question: Write a recursive function that finds the minimum value in an array. Your function signature should be public int findMinimum(int[] numbers, int length) One way

Write a recursive function that finds the minimum value in an array. Your function signature should be public int findMinimum(int[] numbers, int length) One way to think of finding a minimum recursively is to think "the minimum number is either the last element in the array, or the minimum value in the rest of the array" For example, if you have the array [1, 3, 2, 567, 23, 45, 9], the minimum value in this array is either 9 or the minimum value in [1, 3, 2, 567, 23, 45] Hint: The trick is you don't actually have to resize the array. Just tell the function the array is shorter than it really is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
