diff --git a/10-longestWords/index.js b/10-longestWords/index.js index a98d2d8..4b54260 100644 --- a/10-longestWords/index.js +++ b/10-longestWords/index.js @@ -1,4 +1,16 @@ export function longestWords(words) { // implementar logica aqui - + let arr = words.sort(function (a, b) { + return b.length - a.length; + }) + let firstChar = arr[0]; + let arrayVazia = []; + for(let i = 0; i < arr.length; i++){ + if(arr[i].length === firstChar.length){ + arrayVazia.push(arr[i]); + continue; + } + return arrayVazia; + } + return words; } \ No newline at end of file