feat(mostUsedChar): Feito nono exercício

This commit is contained in:
Vinícius Gabriel 2022-10-28 08:31:43 -03:00
parent dffee7f77e
commit bcb4477fc5

View File

@ -1,4 +1,18 @@
export function mostUsedChar(text) {
// implementar logica aqui
return ""
let cont = 0, i, j, contador = 0, valorFinal;
let texto = text.split("");
for (let i = 0; i < texto.length; i++) {
cont = 0;
for (let j = 0; j < texto.length; j++) {
if (texto[i].toUpperCase() === texto[j].toUpperCase()) {
cont++
}
}
if (cont >= contador) {
contador = cont;
valorFinal = texto[i]
}
}
return valorFinal;
}