feat(09-mostRepeatedChar): Cria a função

This commit is contained in:
Leonardo Pereira Rocha 2022-11-02 16:11:57 -03:00
parent e3706d5771
commit d2ea761b4f

View File

@ -1,4 +1,19 @@
export function mostUsedChar(text) { export function mostUsedChar(text) {
// implementar logica aqui let arrChar;
return "" arrChar = text.split('');
} let countCharMax = 1;
let countChar = 0;
let char;
for (let i=0; i<arrChar.length; i++)
{
for (let j=i; j<arrChar.length; j++) {
if (arrChar[i] == arrChar[j])
countChar++;
if (countCharMax<countChar) {
countCharMax=countChar;
char = arrChar[i];
}
}
countChar = 0;
} return char;
}