We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
N , M = map(int , input().split())
List = []
for i in range(N):
X = list(map(int , input().split()))
List.append(X)
min_array = numpy.min(List , axis = 1)
max_array = numpy.max(min_array)
print(max_array)
Cookie support is required to access HackerRank
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 →
import numpy
if name == 'main':