2022-10-27 15:07:13 +00:00
|
|
|
export function longestWords(words) {
|
2022-11-03 03:13:58 +00:00
|
|
|
// implementar logica aqui
|
|
|
|
let comp = 0;
|
|
|
|
let resultado = [];
|
2022-11-03 03:15:26 +00:00
|
|
|
for (i in words) {
|
|
|
|
if (comp < words[i].length) {
|
|
|
|
comp = words[i].length;
|
|
|
|
resultado.push(words[i]);
|
2022-11-03 03:13:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (resultado.length > 1) {
|
|
|
|
if (resultado[0].length < resultado[1].length) {
|
|
|
|
resultado.shift();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resultado;
|
|
|
|
}
|