aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-12-21 16:11:34 +0100
committerMarvin Borner2020-12-21 16:11:34 +0100
commit0c4564b03d362167d9f867f1154235fb4a9fab17 (patch)
tree79aeef3bdc6c157bbad17281109397a5a39438f6
parent4aa0df65b3d1e735b84b52f60684a86ce46b3481 (diff)
Golf ez
-rw-r--r--2020/21/solve.js24
1 files changed, 2 insertions, 22 deletions
diff --git a/2020/21/solve.js b/2020/21/solve.js
index ac50371..8202603 100644
--- a/2020/21/solve.js
+++ b/2020/21/solve.js
@@ -1,29 +1,9 @@
const { _, performance } = require("perf_hooks");
const fs = require("fs");
-const data = fs.readFileSync("input", "utf8").split("\n");
+const d = 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;
+c=" (contains ";f=d.map(x=>({i:x.split(c)[0].split(" "),a:x.split(c)[1].split(")")[0].split(", ")}));a=new Map();for(g of f)for(b of g.a)a.set(b,new Set(a.get(b)?[...g.i].filter(x=>a.get(b).has(x)):g.i));return f.map(x=>x.i).flat().filter(x=>!new Set([...a.values()].reduce((a,b)=>[...a,...b],[])).has(x)).length;
}
const tic = performance.now();