I have two arrays, I want to compare these 2 arrays and get back the Array 1 with the unique values.
Array 1, XY:
0, 1
1, 1
2, 2
3, 3
4, 4
5, 4
Array 2, XY:
0, 1
1, 1
2, 3
3, 2
4, 4
5, 4
In this scenario it should give back the 2, 2 and 3, 3 from the Array 1. So it should give back the results where the position X0 and X1 together unique.