I have a numpy array and another array:
[array([-1.67397643, -2.77258872]), array([-1.67397643, -2.77258872]), array([-2.77258872, -1.67397643]), array([-2.77258872, -1.67397643])]
- Which index position inside the numpy arrays wins - i.e.
-1.67397643 > -2.77258872- so the first value would be 0. - Final output of the numpy array would be
[0, 0, 1, 1](a list is fine too)
How can I do that ?