19 lines
373 B
JavaScript
19 lines
373 B
JavaScript
export function longestWords(words) {
|
|
// implementar logica aqui
|
|
let comp = 0;
|
|
let resultado = [];
|
|
for (i in words) {
|
|
if (comp < words[i].length) {
|
|
comp = words[i].length;
|
|
resultado.push(words[i]);
|
|
}
|
|
}
|
|
if (resultado.length > 1) {
|
|
if (resultado[0].length < resultado[1].length) {
|
|
resultado.shift();
|
|
}
|
|
}
|
|
|
|
return resultado;
|
|
}
|