feat(longestWords): adiciona ultima funcao do projeto

This commit is contained in:
Vinicius 2022-11-03 01:13:58 -02:00
parent 14a5981e7e
commit 612643df7e

View File

@ -1,4 +1,18 @@
export function longestWords(words) {
// implementar logica aqui
}
// implementar logica aqui
let comp = 0;
let resultado = [];
for (i in text) {
if (comp < text[i].length) {
comp = text[i].length;
resultado.push(text[i]);
}
}
if (resultado.length > 1) {
if (resultado[0].length < resultado[1].length) {
resultado.shift();
}
}
return resultado;
}