Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Numpy sum solution in 3rd party category for Weak Point by swagg010164
import numpy as np
def weak_point(a):
f = np.sum(a, axis=0)
s = np.sum(a, axis=1)
return [s.tolist().index(min(s)), f.tolist().index(min(f))]
Aug. 12, 2020