feat: adicionando solução do 9° desafio
This commit is contained in:
parent
007a601900
commit
7328f18713
@ -16,7 +16,15 @@
|
||||
*/
|
||||
function mostUsedChar(text) {
|
||||
// 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;
|
||||
}
|
||||
|
||||
// Resultados esperados
|
||||
|
Loading…
Reference in New Issue
Block a user