<Feture>(09-mostRepeatedChar): implementação do código MostReapeat

This commit is contained in:
Gabriel Ferraz Nogueira 2022-10-28 15:16:57 -03:00
parent 008f01d480
commit 985af27572

View File

@ -1,4 +1,9 @@
export function mostUsedChar(text) {
// implementar logica aqui
return ""
let words = {}
const texts = text.toLowerCase().split("").sort();
texts.forEach((word) => words[word] = (words[word] || 0) + 1);
const maxVal = Math.max(...Object.values(words));
const word = Object.keys(words).find((key) => words[key] === maxVal);
return word
}