[Solved] Check if a character appears more than once in a string using charAt() and loop


try

int count = 0;
for (int i = 0; i < str.length() - 1; i++) {
  for (int j = i + 1; j < str.length; j++) {

    if(str.charAt(i)==str.charAt(j)){
       count++;
    }
}    
return count;
}

3

solved Check if a character appears more than once in a string using charAt() and loop