Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Minimal solution in Clear category for Weak Point by BertrandBordage
# migrated from python 2.7
def weak_point(matrix):
rows, cols = list(map(sum, matrix)), list(map(sum, list(zip(*matrix))))
return rows.index(min(rows)), cols.index(min(cols))
Aug. 11, 2014
Comments: