I have this 2d numpy array: [[0,2],[0,3],[0,1],[1,0]]. These elements represent points in x and y axes. So, for example, in [0,2] 0 is the x and 2 is the y.
I would like to get the point with the min x and min y. In this case, it would be [0,1]. I know I can easily do this with a for loop, but it takes too many resources. Is there a numpy function or something to calculate this?