Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Transpose solution in Clear category for Weak Point by robby.daigle
# migrated from python 2.7
def weak_point(matrix):
n = list(map(sum,matrix))
t = list(map(sum,list(zip(*matrix))))
return [n.index(min(n)),t.index(min(t))]
Dec. 20, 2014