function PrintAllNonRepeatedCharacter(str) {
for (let i = 0; i < str.length; i++) {
if (str.indexOf(str.charAt(i)) == str.lastIndexOf(str.charAt(i))) {
console.log(str.charAt(i));
}
}
return ' ';
}
const str = "c c++ csharp javascript php python";
PrintAllNonRepeatedCharacter(str);
/*
run:
"j"
"v"
"i"
"y"
"o"
"n"
*/