feat(longestWords): Finaliza algoritmo

This commit is contained in:
William Simão Cavalcante 2022-10-31 16:55:29 -03:00
parent e9f6faa988
commit c7e515ec35

View File

@ -1,4 +1,26 @@
export function longestWords(words) { export function longestWords(words) {
// implementar logica aqui // implementar logica aqui
} let longestLength = 0;
let longestWords = [];
words.forEach(word => {
if (longestLength < word.length) {
longestLength = word.length;
} else {
longestLength;
}
});
words.forEach(word => {
if (word.length === longestLength) {
longestWords.push(word);
}
});
return longestWords;
}