You are viewing a single comment's thread. Return to all comments →
import numpy as np n,m=list(map(int,input().split())) l=[] for i in range(n): x=list(map(int, input().split())) l.append(x) arr=np.array(l) mx=np.max(np.min(arr,axis=1)) print(mx)
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 →