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
|
||||
let comp = 0;
|
||||
let resultado = [];
|
||||
for (i in text) {
|
||||
if (comp < text[i].length) {
|
||||
comp = text[i].length;
|
||||
resultado.push(text[i]);
|
||||
for (i in words) {
|
||||
if (comp < words[i].length) {
|
||||
comp = words[i].length;
|
||||
resultado.push(words[i]);
|
||||
}
|
||||
}
|
||||
if (resultado.length > 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user