Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Weak Point by Amachua
def weak_point(m):
f=lambda d:[sum(j)for j in d].index(min(sum(j)for j in d))
return f(m), f(list(zip(*m)))
July 10, 2014