challenge-algorithms-v2.0-g.../10-longestWords/index.js

36 lines
742 B
JavaScript

export function longestWords(words) {
// implementar logica aqui
let wordsInfo = []
let newArr = []
words.forEach(word => {
const wordInfo = {
[word]: word.length
}
wordsInfo.push(wordInfo)
})
let maxValue = 0
wordsInfo.forEach(wordInfo => {
let newMaxValue = Math.max(...Object.values(wordInfo))
if (newMaxValue > maxValue) {
maxValue = newMaxValue
}
})
wordsInfo.forEach(wordInfo => {
Object.keys(wordInfo).filter((key) => {
if (key.length >= maxValue) {
newArr.push(key)
}
})
})
return newArr
}
longestWords(["abacaxi", "melancia", "banana"]) // ["melancia"]