Add 2020 day 6

This commit is contained in:
Alice Gaudon 2020-12-06 14:04:44 +01:00
parent c4a4227c47
commit 2309c0f348
1 changed files with 34 additions and 0 deletions

34
2020/day6/day6.js Executable file
View File

@ -0,0 +1,34 @@
#!/bin/node
const fs = require('fs');
fs.readFile('input.txt', (err, data) => {
const groups = data.toString()
.split('\n\n')
.map(group => group.split('\n')
.filter(person => person.length > 0));
let q1 = 0;
let q2 = 0;
for (const group of groups) {
let q1Questions = [];
let q2Questions = [];
for (const person of group) {
for (const question of person) {
if (q1Questions.indexOf(question) < 0) {
q1Questions.push(question);
if (group.every(person => person.indexOf(question) >= 0)) {
q2Questions.push(question);
}
}
}
}
q1 += q1Questions.length;
q2 += q2Questions.length;
}
console.log(q1, q2);
});