Find the minimum value in an array by recursive function
Hello,
Please help me to solve the following program by using Java.
Problem: Write a recursive function recursiveMinimum that takes an integer array and the array size as arguments and returns the smallest element of the array. The function should stop processing and return when it receives an array of 1 element.
thanks,
Ripon

