diff options
author | Marvin Borner | 2020-12-21 15:52:23 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-21 15:52:23 +0100 |
commit | 4aa0df65b3d1e735b84b52f60684a86ce46b3481 (patch) | |
tree | 2a3c246a5ee6c3d9ec98b4c80c1cd4c7f1a4aaa4 /2020/21/solve.js | |
parent | e5503da5f641857184953e7684c25ea98b54fe03 (diff) |
One, ungolfed
Diffstat (limited to '2020/21/solve.js')
-rw-r--r-- | 2020/21/solve.js | 33 |
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"); |