forked from M3-Academy/challenge-algorithms-v2.0
feat: implementa função do caractere mais repetido
This commit is contained in:
parent
94db3cf689
commit
96de2bd2c3
@ -1,4 +1,16 @@
|
||||
export function mostUsedChar(text) {
|
||||
// implementar logica aqui
|
||||
return ""
|
||||
const Objeto = {};
|
||||
let Contador = 0;
|
||||
let mostUsedChar = "";
|
||||
for (let char of text) {
|
||||
Objeto[char] = Objeto[char] + 1 || 1;
|
||||
}
|
||||
for (let key in Objeto) {
|
||||
if (Objeto[key] > Contador) {
|
||||
Contador = Objeto[key];
|
||||
mostUsedChar = key;
|
||||
}
|
||||
}
|
||||
return mostUsedChar;
|
||||
}
|
Loading…
Reference in New Issue
Block a user