09-resolvido

This commit is contained in:
Emilly Schuenck de Lima 2022-11-02 18:21:59 -03:00
parent 70196f39a7
commit fddd3bd930

View File

@ -1,4 +1,12 @@
export function mostUsedChar(text) {
// implementar logica aqui
return ""
}
// implementar logica aqui
let max = 0;
let mostRep = "";
text.split("").forEach(function (index) {
if (text.split(index).length > max) {
max = text.split(index).length;
mostRep = index;
}
});
return mostRep;
}