forked from M3-Academy/challenge-algorithms-v2.0
feat: Resolvido questao mostRepeatedChar
This commit is contained in:
parent
5c45023156
commit
71372a1e84
@ -1,4 +1,20 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
return ""
|
let newText = text.toLowerCase();
|
||||||
}
|
let newLetterRep;
|
||||||
|
let letraRep = 0;
|
||||||
|
for (let i = 0; i < newText.length; i++) {
|
||||||
|
let letra = newText[i];
|
||||||
|
let cont = 0;
|
||||||
|
for (let j = 0; j < newText.length; j++) {
|
||||||
|
if (letra == newText[j]) {
|
||||||
|
cont++;
|
||||||
|
if (cont > letraRep) {
|
||||||
|
letraRep = cont;
|
||||||
|
newLetterRep = newText[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return newLetterRep;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user