Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Weak Point by a691662
# migrated from python 2.7
def weak_point(matrix):
row, col = list(map(sum, matrix)), list(map(sum, list(zip(*matrix))))
return [row.index(min(row)), col.index(min(col))]
Feb. 10, 2015