Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 294 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 294 Bytes

max_min_2d_arr_recursion

recursion problem

Create a Function that takes four parameters and
return the maximum/minimum value from a 2d list using recursion (python)

For Example:

def max_2d(arr, index1, index2, max_val): pass;

or

def min_2d(arr, index1, index2, min_val): pass;