forked from M3-Academy/challenge-algorithms-v2.0
Feat(Desafio_2.10): Cria resposta desafio 2.10
This commit is contained in:
parent
b218c48e66
commit
5e63b3c3a2
@ -1,4 +1,10 @@
|
||||
export function longestWords(words) {
|
||||
// implementar logica aqui
|
||||
let longest = ""
|
||||
for (let word of words){
|
||||
if (word.length > longest.length) longest = word;
|
||||
}
|
||||
let longest_words = words.filter(item => item.length >= longest.length)
|
||||
return longest_words
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user