22 lines
523 B
JavaScript
22 lines
523 B
JavaScript
export function mostUsedChar(text) {
|
|
// implementar logica aqui
|
|
|
|
let str = text.toLowerCase().split("").sort().join('');
|
|
let letraRepetida = 0;
|
|
let cont = 1;
|
|
let mostra = "";
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
if (str[i] === str[i + 1]) {
|
|
cont++;
|
|
} else {
|
|
if (cont > letraRepetida) {
|
|
letraRepetida = cont;
|
|
mostra = str[i];
|
|
}
|
|
cont = 1;
|
|
}
|
|
}
|
|
|
|
return mostra;
|
|
} |