diff --git a/10-longestWords/index.js b/10-longestWords/index.js index a98d2d8..fdad52d 100644 --- a/10-longestWords/index.js +++ b/10-longestWords/index.js @@ -1,4 +1,12 @@ export function longestWords(words) { // implementar logica aqui - -} \ No newline at end of file + let longest = ''; + + for (const word of words) { + if (word.length > longest.length) { + longest = word; + } + } + + return words.filter((word) => word.length === longest.length); + }