Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Weak Point by StanislauL
def weak_point(matrix):
row = matrix.index(min(matrix, key = sum))
col = list(zip(*matrix)).index(min(zip(*matrix), key = sum))
return [row, col]
March 2, 2018