Say I have these 2D arrays A and B.
How can I remove elements from A that are in B. (Complement in set theory: A-B)
A=np.asarray([[1,1,1], [1,1,2], [
Another non-numpy solution:
[i for i in A if i not in B]