forked from M3-Academy/challenge-algorithms-v2.0
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
export function longestWords(words) {
|
|
// implementar logica aqui
|
|
let maior = "";
|
|
|
|
for (const string of words) {
|
|
if (string.length > maior.length) {
|
|
maior = string;
|
|
}
|
|
}
|
|
const maiores = words.filter((string) => string.length == maior.length);
|
|
|
|
return maiores;
|
|
} |