Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
list comprehensions solution in Uncategorized category for Weak Point by blabaster
def weak_point(m):
return [a.index(min(a)) for a in ([sum(row) for row in (m)], [sum(col) for col in zip(*m)])]
July 9, 2014