public static boolean checkDuplicate(char[] input){
Set tempSet = new HashSet();
for (char chr : input) {
if (!tempSet.add(chr))
return true;
}
return false;
I don't know how to write a test class for this method.
Aucun commentaire:
Enregistrer un commentaire