development #11

Merged
carloswinter merged 20 commits from development into master 2022-10-28 19:24:09 +00:00
Showing only changes of commit e4e94adf5e - Show all commits

View File

@ -1,4 +1,12 @@
export function mostUsedChar(text) { export function mostUsedChar(text) {
// implementar logica aqui // implementar logica aqui
return "" let max = 0;
let maxRepeated = '';
text.split('').forEach(function(char){
if(text.split(char).length > max) {
max = text.split(char).length;
maxRepeated = char;
}
});
return maxRepeated;
} }