forked from M3-Academy/challenge-algorithms-v2.0
feature/algoritimos #1
@ -1,19 +1,11 @@
|
||||
export function mostUsedChar(text) {
|
||||
// implementar logica aqui
|
||||
|
||||
const map = new Map();
|
||||
|
||||
// Percorre as letras do texto
|
||||
for (let letter of text) {
|
||||
|
||||
// Busca a quantidade de vezes que a letra já se repetiu, ou 0 para a primeira ocorrência
|
||||
let count = map.get(letter) || 0;
|
||||
|
||||
// Atualiza a frequência incrementando-a
|
||||
map.set(letter, count+1)
|
||||
|
||||
console.log(map)
|
||||
|
||||
let max = 0,
|
||||
maxChar = '';
|
||||
text.split('').forEach(function(char){
|
||||
if(text.split(char).length > max) {
|
||||
max = text.split(char).length;
|
||||
maxChar = char;
|
||||
}
|
||||
|
||||
});
|
||||
return maxChar;
|
||||
}
|
Loading…
Reference in New Issue
Block a user