Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2-liner: MATRIX TRANSPOSED & enumerated by coords solution in 3rd party category for Weak Point by Stensen
import numpy as np
weak_point = lambda M: min([[sum(i), sum(j), x, y] for x, i in enumerate(M) for y, j in enumerate(np.array(M).T)])[-2:]
Oct. 12, 2020