this is the Code i have, what should i do ?
It's not even a String. it use Arraylist.
import java.util.ArrayList;
import java.util.Collections;
public class ArrayCheck {
public boolean isAnagram(ArrayList<Character> arr1, ArrayList<Character> arr2) {
}
}