getting range lowest and highest values from np array

Solutions on MaxInterview for getting range lowest and highest values from np array by the best coders in the world

showing results for - "getting range lowest and highest values from np array"
Emilia
18 Feb 2018
1min(big_array), max(big_array)
2
Pauline
09 Jun 2016
1np.min(big_array), np.max(big_array)
2