Problem 1: Write a recursive function that receives three parameters:
a) An array of integers
b) An integer indicating the index of the first element
c) An integer representing the index of the last element.
The recursive function should return the maximum element of the array.
Programming in Java