Can anyone please explain this

"""char [] f= new char[26];
for(char c : target.toCharArray()){
f[c-'a']++; specially this line
}

Comments (2)