diff --git a/10-longestWords/index.js b/10-longestWords/index.js index a98d2d8..954ac9b 100644 --- a/10-longestWords/index.js +++ b/10-longestWords/index.js @@ -1,4 +1,20 @@ export function longestWords(words) { - // implementar logica aqui - -} \ No newline at end of file + let allArray = []; + let longest = []; + for (let i=0; i