forked from M3-Academy/challenge-algorithms-v2.0
12 lines
382 B
JavaScript
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;
|
|
} |