Merge pull request 'feat: solucao mostRepeatedChar' (#9) from feature/solucao-mostRepeatedChar into development

Reviewed-on: #9
This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 14:00:41 +00:00
commit 64408391b9

View File

@ -1,4 +1,17 @@
export function mostUsedChar(text) {
// implementar logica aqui
return ""
let arr = text.toLowerCase().split("").sort();
let mostRepeated = null;
let moreOccurrences = -1;
let count = 1;
for (let i = 1; i <= arr.length; i++) {
if (i < arr.length && arr[i] === arr[i - count]) {
count++;
} else if (count > moreOccurrences) {
mostRepeated = arr[i - 1];
moreOccurrences = count;
}
}
return `${mostRepeated}`;
}