forked from M3-Academy/challenge-algorithms-v2.0
feat: Implementa Desafio 2.9
This commit is contained in:
parent
b806b8aa33
commit
7ec610d9c9
@ -1,4 +1,27 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
let texto = text.toLowerCase().replace(/ /g, "").split("").sort();
|
||||||
return ""
|
let letras = [];
|
||||||
|
let contadorLetras = 0;
|
||||||
|
let letrasRepetidas = [];
|
||||||
|
|
||||||
|
for(let i = 0 ; i < texto.length ; i++) {
|
||||||
|
if(texto[i + 1] === texto[i]) {
|
||||||
|
contadorLetras++;
|
||||||
|
}else {
|
||||||
|
letras.push(texto[i]);
|
||||||
|
letrasRepetidas.push(contadorLetras);
|
||||||
|
contadorLetras = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let valorMaximoLetras = Math.max(...letrasRepetidas);
|
||||||
|
let letraMaisRepetida = "";
|
||||||
|
|
||||||
|
for(let i = 0 ; i < letrasRepetidas.length ; i++) {
|
||||||
|
if(letrasRepetidas[i] == valorMaximoLetras) {
|
||||||
|
letraMaisRepetida = letras[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return letraMaisRepetida;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user