I have two numpy arrays with different length.
array([['A', 'B'],
['C', 'D'],
['E', 'F']])
array([['B', 'A'],
['C', 'E']])
What I want is to see is if they have common rows, BUT not consider the order. So in the above two arrays, 'A' 'B' and 'B' 'A' are duplicates.