Retornando a letra mais repetida de uma string

This commit is contained in:
Carlos cristovao guerreiro scantbelruy 2022-10-28 08:27:02 -04:00
parent 29679d802c
commit 64ba560b3c

View File

@ -1,4 +1,15 @@
export function mostUsedChar(text) {
// implementar logica aqui
return ""
let h = new Set();
for(let i = 1; i <= text.length - 1; i++)
{
let c = text[i];
if (h.has(c))
return c;
else
h.add(c);
}
return '\0';
}