this is my code, my last console.log return an undefined result, can you help me to understand why?
I don’t really understand why this happened but I’m sure that is a really stupid thing
also, this is the input(elem_riga
)
JavaScript
x
13
13
1
00100
2
11110
3
10110
4
10111
5
10101
6
01111
7
00111
8
11100
9
10000
10
11001
11
00010
12
01010
13
JavaScript
1
56
56
1
const fs = require("fs");
2
const input = fs.readFileSync("./demo.txt").toString();
3
const elem_riga = input.split("n");
4
5
const most_common = (filtro_vincente, index) => {
6
for (let i of filtro_vincente) {
7
index++;
8
const filtro_uno = filtro_vincente.filter((e) => e[index] === "1");
9
const filtro_due = filtro_vincente.filter((e) => e[index] === "0");
10
filtro_uno.length > filtro_due.length
11
? (filtro_vincente = filtro_uno)
12
: (filtro_vincente = filtro_due);
13
if (filtro_uno.length === filtro_due.length) {
14
return console.log(filtro_uno);
15
}
16
}
17
};
18
19
const most_uncommon = (filtro_vincente, index) => {
20
for (let i of filtro_vincente) {
21
index++;
22
23
const filtro_uno = filtro_vincente.filter((e) => e[index] === "1");
24
const filtro_due = filtro_vincente.filter((e) => e[index] === "0");
25
26
filtro_uno.length < filtro_due.length
27
? (filtro_vincente = filtro_uno)
28
: (filtro_vincente = filtro_due);
29
30
if (filtro_uno.length === filtro_due.length) {
31
return console.log(filtro_due);
32
}
33
}
34
};
35
36
const xygen_generator_rating = (elem_riga, index) => {
37
const filtro_uno = elem_riga.filter((e) => e[index] === "1");
38
const filtro_due = elem_riga.filter((e) => e[index] === "0");
39
filtro_uno.length > filtro_due.length
40
? most_common(filtro_uno, index)
41
: most_common(filtro_due, index);
42
};
43
44
const co2_scrubber_rating = (elem_riga, index) => {
45
const filtro_uno = elem_riga.filter((e) => e[index] === "1");
46
const filtro_due = elem_riga.filter((e) => e[index] === "0");
47
filtro_uno.length < filtro_due.length
48
? most_uncommon(filtro_uno, index)
49
: most_uncommon(filtro_due, index);
50
};
51
52
const oxgen_gen = xygen_generator_rating(elem_riga, (index = 0));
53
const co2 = co2_scrubber_rating(elem_riga, (index = 0));
54
console.log(oxgen_gen, co2);
55
56
Advertisement
Answer
most_common()
and most_uncommon()
shouldn’t return the result of console.log()
, they should return the variables filtro_uno
and filtro_due
.
xygen_generator_rating()
and co2_scrubber_rating()
need to return the results of the ternaries.
JavaScript
1
66
66
1
const most_common = (filtro_vincente, index) => {
2
for (let i of filtro_vincente) {
3
index++;
4
const filtro_uno = filtro_vincente.filter((e) => e[index] === "1");
5
const filtro_due = filtro_vincente.filter((e) => e[index] === "0");
6
filtro_uno.length > filtro_due.length
7
? (filtro_vincente = filtro_uno)
8
: (filtro_vincente = filtro_due);
9
if (filtro_uno.length === filtro_due.length) {
10
console.log(filtro_uno);
11
return filtro_uno;
12
}
13
}
14
};
15
16
const most_uncommon = (filtro_vincente, index) => {
17
for (let i of filtro_vincente) {
18
index++;
19
20
const filtro_uno = filtro_vincente.filter((e) => e[index] === "1");
21
const filtro_due = filtro_vincente.filter((e) => e[index] === "0");
22
23
filtro_uno.length < filtro_due.length
24
? (filtro_vincente = filtro_uno)
25
: (filtro_vincente = filtro_due);
26
27
if (filtro_uno.length === filtro_due.length) {
28
console.log(filtro_due);
29
return filtro_due;
30
}
31
}
32
};
33
34
const xygen_generator_rating = (elem_riga, index) => {
35
const filtro_uno = elem_riga.filter((e) => e[index] === "1");
36
const filtro_due = elem_riga.filter((e) => e[index] === "0");
37
return filtro_uno.length > filtro_due.length
38
? most_common(filtro_uno, index)
39
: most_common(filtro_due, index);
40
};
41
42
const co2_scrubber_rating = (elem_riga, index) => {
43
const filtro_uno = elem_riga.filter((e) => e[index] === "1");
44
const filtro_due = elem_riga.filter((e) => e[index] === "0");
45
return filtro_uno.length < filtro_due.length
46
? most_uncommon(filtro_uno, index)
47
: most_uncommon(filtro_due, index);
48
};
49
50
const input = `00100
51
11110
52
10110
53
10111
54
10101
55
01111
56
00111
57
11100
58
10000
59
11001
60
00010
61
01010`;
62
const elem_riga = input.split("n");
63
64
const oxgen_gen = xygen_generator_rating(elem_riga, (index = 0));
65
const co2 = co2_scrubber_rating(elem_riga, (index = 0));
66
console.log(oxgen_gen, co2);