challenge-algorithms-v2.0-m.../09-mostRepeatedChar/index.js

12 lines
382 B
JavaScript

export function mostUsedChar(text) {
// implementar logica aqui
let letraRepetida;
let str = text.toLowerCase().replace(/\,*\s/g, "").split("", text.length);
for(let i = 0; i < text.length; i++){
for(let maisRepetida = i + 1; maisRepetida < text.length; maisRepetida++){
letraRepetida = str[i];
}
}
return letraRepetida;
}