Maximum

Report a typo

Write the function max that takes a list of integers, and returns the biggest value in the list.

There are many ways to solve this task, but please try to solve using recursion.

Sample Input 1:

2 8 1

Sample Output 1:

8
Write a program in Python 3
def recursive_max(list):
pass

print(recursive_max(input_list))
___

Create a free account to access the full topic