I have 2 2d numpy arrays, Array A and Array B.
I want to remove arrays who occurs in both arrays for Array A and B.
But, if it occurs 1 time in Array A and 2 times in Array B, I want to only remove it 1 time in a and b.
If it occurs for 5 times in Array A and 3 times in Array B, I want it to be removed 3 times in both Arrays.
Thanks