You are viewing a single comment's thread. Return to all comments →
import numpy N,M = map(int,input().split()) arr = numpy.array([input().split() for _ in range(N)], int) arr_min = numpy.min(arr, axis = 1) print(numpy.max(arr_min))
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 →