diff --git a/10-longestWords/index.js b/10-longestWords/index.js index a98d2d8..eca2aee 100644 --- a/10-longestWords/index.js +++ b/10-longestWords/index.js @@ -1,4 +1,18 @@ export function longestWords(words) { - // implementar logica aqui - -} \ No newline at end of file + // implementar logica aqui + let comp = 0; + let resultado = []; + for (i in text) { + if (comp < text[i].length) { + comp = text[i].length; + resultado.push(text[i]); + } + } + if (resultado.length > 1) { + if (resultado[0].length < resultado[1].length) { + resultado.shift(); + } + } + + return resultado; +}