You are viewing a single comment's thread. Return to all comments →
Understandable code from my side..
import numpy a , b = map(int,input().split()) arrayList = [] for i in range(a): arrayList.append(list(map(int,input().split()))) print(numpy.max(numpy.min(arrayList, axis = 1)))
Seems like cookies are disabled on this browser, please enable them to open this website
Min and Max
You are viewing a single comment's thread. Return to all comments →
Understandable code from my side..