Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Weak Point by Pouf
def weak_point(matrix):
rowValues = [sum(row) for row in matrix]
columnValues = [sum(col) for col in zip(*matrix[::-1])]
minRow = rowValues.index(min(rowValues))
minCol = columnValues.index(min(columnValues))
return [minRow, minCol]
Feb. 27, 2015