forked from M3-Academy/challenge-algorithms-v2.0
feat(mostUsedChar): Feito nono exercício
This commit is contained in:
parent
dffee7f77e
commit
bcb4477fc5
@ -1,4 +1,18 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
let cont = 0, i, j, contador = 0, valorFinal;
|
||||||
return ""
|
let texto = text.split("");
|
||||||
|
|
||||||
|
for (let i = 0; i < texto.length; i++) {
|
||||||
|
cont = 0;
|
||||||
|
for (let j = 0; j < texto.length; j++) {
|
||||||
|
if (texto[i].toUpperCase() === texto[j].toUpperCase()) {
|
||||||
|
cont++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (cont >= contador) {
|
||||||
|
contador = cont;
|
||||||
|
valorFinal = texto[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return valorFinal;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user