fix(longesWords): conserta nome do parametro
This commit is contained in:
parent
612643df7e
commit
0f2f65fcf0
@ -2,10 +2,10 @@ export function longestWords(words) {
|
|||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
let comp = 0;
|
let comp = 0;
|
||||||
let resultado = [];
|
let resultado = [];
|
||||||
for (i in text) {
|
for (i in words) {
|
||||||
if (comp < text[i].length) {
|
if (comp < words[i].length) {
|
||||||
comp = text[i].length;
|
comp = words[i].length;
|
||||||
resultado.push(text[i]);
|
resultado.push(words[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (resultado.length > 1) {
|
if (resultado.length > 1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user