feat: criando o codigo do repeated caracterias
This commit is contained in:
parent
c6f6df9c59
commit
e8427b22ee
@ -1,4 +1,21 @@
|
||||
export function mostUsedChar(text) {
|
||||
// implementar logica aqui
|
||||
return ""
|
||||
// implementar logica aqui
|
||||
const stringToArray = text.split('')
|
||||
const obj = {}
|
||||
|
||||
stringToArray.forEach(element => {
|
||||
obj[element] = obj[element] ? obj[element] + 1 : 1
|
||||
})
|
||||
|
||||
const objToArray = Object.entries(obj)
|
||||
|
||||
let res = ['', 0]
|
||||
|
||||
objToArray.forEach(word => {
|
||||
if (res[1] < word[1]) {
|
||||
res = word
|
||||
}
|
||||
})
|
||||
|
||||
return res[0]
|
||||
}
|
Loading…
Reference in New Issue
Block a user