aboutsummaryrefslogtreecommitdiff
path: root/2020/21/solve.js
diff options
context:
space:
mode:
authorMarvin Borner2020-12-21 15:52:23 +0100
committerMarvin Borner2020-12-21 15:52:23 +0100
commit4aa0df65b3d1e735b84b52f60684a86ce46b3481 (patch)
tree2a3c246a5ee6c3d9ec98b4c80c1cd4c7f1a4aaa4 /2020/21/solve.js
parente5503da5f641857184953e7684c25ea98b54fe03 (diff)
One, ungolfed
Diffstat (limited to '2020/21/solve.js')
-rw-r--r--2020/21/solve.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/2020/21/solve.js b/2020/21/solve.js
new file mode 100644
index 0000000..ac50371
--- /dev/null
+++ b/2020/21/solve.js
@@ -0,0 +1,33 @@
+const { _, performance } = require("perf_hooks");
+const fs = require("fs");
+const data = fs.readFileSync("input", "utf8").split("\n");
+
+function partOne() {
+ const foods = data.map((x) => ({
+ ingredients: x.split(" (contains ")[0].split(" "),
+ allergens: x.split(" (contains ")[1].split(")")[0].split(", "),
+ }));
+
+ const allergens = new Map();
+ for (let food of foods) {
+ for (let allergen of food.allergens) {
+ const prev = allergens.get(allergen);
+ let matching;
+ if (prev)
+ matching = new Set([...food.ingredients].filter((x) => prev.has(x)));
+ else matching = new Set(food.ingredients);
+ allergens.set(allergen, matching);
+ }
+ }
+ const all = foods.map((x) => x.ingredients).flat();
+ const matching = [
+ ...new Set([...allergens.values()].reduce((a, b) => [...a, ...b], [])),
+ ];
+ return all.filter((x) => !matching.includes(x)).length;
+}
+
+const tic = performance.now();
+console.log(partOne());
+//console.log(partTwo());
+const toc = performance.now();
+console.log("TIME: " + ((toc - tic) / 1000).toFixed(6) + " seconds");