forked from M3-Academy/challenge-algorithms-v2.0
feature #1
@ -1,4 +1,28 @@
|
||||
export function mostUsedChar(text) {
|
||||
// implementar logica aqui
|
||||
return ""
|
||||
|
||||
|
||||
const palavra = {};
|
||||
let maximo = 0;
|
||||
let repetido = '';
|
||||
|
||||
for(let letra of text){
|
||||
if(palavra[letra]){
|
||||
palavra[letra]++;
|
||||
}else{
|
||||
palavra[letra] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
for(let letra in palavra){
|
||||
if(palavra[letra] > maximo){
|
||||
maximo = palavra[letra];
|
||||
repetido = letra;
|
||||
}
|
||||
}
|
||||
|
||||
return repetido
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user