I want to check with most efficiency way (the fastest way), if some array (or list) is in numpy array. But when I do this:
import numpy
a = numpy.array(
[
[[1, 2]],
[[3, 4]]
])
print([[3, 5]] in a)
It only compares the first value and returns True
Somebody knows, how can I solve it? Thank you.