feat(longestWords): adiciona ultima funcao do projeto
This commit is contained in:
parent
14a5981e7e
commit
612643df7e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user