Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Factored solution in Clear category for Weak Point by veky
def weak_point(matrix):
def ms(rows):
sums = tuple(map(sum, rows))
return sums.index(min(sums))
return ms(matrix), ms(zip(*matrix))
July 9, 2014
Comments: