I've initialized an ArrayList holding int arrays as such:
ArrayList<int[]> holder = new ArrayList<int[]>();
If I add an int[] like this:
int[] first = {1, 2, 3};
holder.add(first);
If I do this check, I want the function to return true, but it returns false right now
int[] second = {2, 1, 3};
if(holder.contains(second)) return true;
else return false