forked from M3-Academy/challenge-algorithms-v2.0
feat(desafio): Adiciona nona tarefa concluida
This commit is contained in:
parent
a9b425e213
commit
a334ca8a26
@ -1,4 +1,12 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
return ""
|
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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user