forked from M3-Academy/challenge-algorithms-v2.0
feat: adicionando solução do 9° desafio
This commit is contained in:
parent
e78fc6780f
commit
ef2c7d7aef
@ -1,4 +1,12 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
return ""
|
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