You are viewing a single comment's thread. Return to all comments →
import numpy n=list(map(int,input().split())) list1=[] for _ in range(n[0]): list1.append(list(map(int,input().split()))) my_array = numpy.array(list1) print(numpy.max(numpy.array(numpy.min(my_array, axis = 1))))
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Min and Max
You are viewing a single comment's thread. Return to all comments →