mirror of
https://github.com/Baipyrus/AoC-23.git
synced 2024-11-14 09:43:49 +00:00
filter all galaxies and positions
This commit is contained in:
parent
8b72c18d65
commit
d1c56a4317
@ -21,7 +21,11 @@ const flip = (current) =>
|
||||
);
|
||||
|
||||
const universe = flip(expand(flip(expand(input))));
|
||||
console.log(universe);
|
||||
const galaxies = universe
|
||||
.map((a, y) => a.map((b, x) => ({ s: b, x, y })).filter((b) => b.s === "#"))
|
||||
.filter((e) => e.length > 0)
|
||||
.reduce((a, i) => [...a, ...i], []);
|
||||
console.log(galaxies);
|
||||
|
||||
const t1 = performance.now();
|
||||
console.log(`Runtime: ${t1 - t0}ms`);
|
||||
|
Loading…
Reference in New Issue
Block a user