bugfix(longestWords): corrige o codigo
This commit is contained in:
parent
3c9a57e29d
commit
3e4e690a07
@ -1,16 +1,16 @@
|
|||||||
export function longestWords(words) {
|
export function longestWords(words) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
let comp = 0;
|
let maiorTamanho = 0;
|
||||||
|
let i = 0;
|
||||||
let resultado = [];
|
let resultado = [];
|
||||||
for (i in words) {
|
for (i in words) {
|
||||||
if (comp < words[i].length) {
|
if (words[i].length > maiorTamanho) {
|
||||||
comp = words[i].length;
|
maiorTamanho = words[i].length;
|
||||||
resultado.push(words[i]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (resultado.length > 1) {
|
for (i in words) {
|
||||||
if (resultado[0].length < resultado[1].length) {
|
if (words[i].length == maiorTamanho) {
|
||||||
resultado.shift();
|
resultado.push(words[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user