forked from M3-Academy/challenge-algorithms-v2.0
Retornando a letra mais repetida de uma string
This commit is contained in:
parent
29679d802c
commit
64ba560b3c
@ -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';
|
||||
}
|
Loading…
Reference in New Issue
Block a user