Compare two arrays. Return true if first array has same items as second array, even if they are in different positions. Here are two possible arrays:
int[] arrayA = { 1, 2, 3 };
int[] arrayB = { 3, 2, 1 };
I can only find if arrayB has a single number in arrayA.