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.
Write the function max that takes a list of integers, and returns the biggest value in the list.
Sample Input 1:
2 8 1Sample Output 1:
8Create a free account to access the full topic