forked from M3-Academy/challenge-algorithms-v2.0
9 lines
386 B
JavaScript
9 lines
386 B
JavaScript
export function mostUsedChar(text) {
|
|
// implementar logica aqui
|
|
let hashmap = {}, resposta;
|
|
text.split('').reduce((acumulador, letra) => {
|
|
hashmap [ letra ] = hashmap [ letra ] + 1 || 1
|
|
resposta = hashmap [ letra ] >= acumulador ? letra : resposta
|
|
return acumulador = hashmap [ letra ] > acumulador ? acumulador + 1 : acumulador }, 1 )
|
|
return resposta;
|
|
} |