diff --git a/10-longestWords/index.js b/10-longestWords/index.js index a98d2d8..23c2bae 100644 --- a/10-longestWords/index.js +++ b/10-longestWords/index.js @@ -1,4 +1,20 @@ export function longestWords(words) { // implementar logica aqui - + let count = 0; + let strFinal = ['']; + + for(let i = 0; i < words.length; i++){ + + if(words[i].length >= strFinal[0].length){ + if(strFinal[0].length === '' || strFinal[0].length < words[i].length){ + strFinal.length = 0; + strFinal.push(words[i]); + }else{ + strFinal.push(words[i]); + } + } + + } + + return strFinal; } \ No newline at end of file