feature/algoritmos #1
@ -1,4 +1,20 @@
|
|||||||
export function mostUsedChar(text) {
|
export function mostUsedChar(text) {
|
||||||
// implementar logica aqui
|
|
||||||
return ""
|
const objeto = {};
|
||||||
|
let repeticoes = 0;
|
||||||
|
let maisRepetida = '';
|
||||||
|
|
||||||
|
for(let i of text){
|
||||||
|
objeto[i] = objeto[i] +1 || 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let i in objeto){
|
||||||
|
if(objeto[i] > repeticoes){
|
||||||
|
repeticoes = objeto[i];
|
||||||
|
maisRepetida = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return maisRepetida;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user