Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Weak Point by a.a.v.worker
def weak_point(matrix):
row = list(map(sum, matrix))
col = list(map(sum, zip(*matrix)))
return [row.index(min(row)),col.index(min(col))]
Aug. 13, 2015
Comments: