2022-10-27 15:07:13 +00:00
|
|
|
export function longestWords(words) {
|
|
|
|
// implementar logica aqui
|
2022-11-02 23:20:35 +00:00
|
|
|
let maior = "";
|
2022-11-02 23:30:43 +00:00
|
|
|
|
2022-11-02 23:20:35 +00:00
|
|
|
words.forEach(comparador => {
|
|
|
|
if (comparador.length > maior.length) {
|
|
|
|
maior = comparador
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
const resultado = words.filter(comparador => {
|
|
|
|
if (comparador.length === maior.length) {
|
|
|
|
|
|
|
|
return comparador;
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return resultado;
|
2022-11-02 19:20:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|