forked from M3-Academy/challenge-algorithms-v2.0
15 lines
339 B
JavaScript
15 lines
339 B
JavaScript
export function longestWords(words) {
|
|
// implementar logica aqui
|
|
let maior = 0;
|
|
for (const palavra of words){
|
|
if (palavra.length > maior)
|
|
maior = palavra.length;
|
|
}
|
|
|
|
const arr = [];
|
|
words.map(element=>{
|
|
if (element.length === maior)
|
|
arr.push(element);
|
|
})
|
|
return arr;
|
|
} |