Challenge: Find Min and Max from a 2-D NumPy Array
In this challenge, the minimum and maximum values need to be returned for each row of a 2-D Numpy array.
We'll cover the following...
Problem statement
The function getMinMax(arr)
needs to be implemented. The arr
is the multidimensional array on which operations are performed. The dimensions of the NumPy
array are random, i.e., the number of rows ...