.Python 3:
Write a recursive function named array_max that takes as its parameter a list of numbers and returns the maximum value in the list. You can assume the array contains at least one element. If multiple elements of the array are tied for the maximum, you would still return that value.
You are free to use a helper function if desired, meaning that you can write a function that takes the specified parameters and have it call your recursive function with any additional parameters it needs.
The file must be named: array_max.py