๐ŸŽ„ my advent of code solutions in typescript! (mirrored from https://codeberg.org/igalaxy/advent-of-code-ts)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

2025.04

+179 -8
-7
src/lib/index.ts src/lib/array.ts
··· 1 - export * from "./math.ts"; 2 - export * from "./object.ts"; 3 - export * from "./grid.ts"; 4 - export * from "./string.ts"; 5 - export * from "./recursion.ts"; 6 - export * from "./bst.ts"; 7 - 8 1 declare global { 9 2 interface Array<T> { 10 3 chunk(size: number): T[][];
+40
src/solutions/2025/04/index.ts
··· 1 + import { createStringGridFromString, Grid } from "@lib/grid.ts"; 2 + import { sum } from "@lib/math.ts"; 3 + 4 + import input from "./input.ts"; 5 + 6 + export const name = "Printing Department"; 7 + 8 + export const parseInput = () => createStringGridFromString(input, "."); 9 + 10 + function countAndRemoveRolls(grid: Grid<string>): number { 11 + const points = grid.points.filter((point) => 12 + sum( 13 + ...grid 14 + .getNeighbors(point.x, point.y, true) 15 + .map(({ x: nx, y: ny }) => (grid.get(nx, ny) == "@" ? 1 : 0)) 16 + ) < 4 17 + ? true 18 + : false 19 + ); 20 + for (const point of points) { 21 + grid.delete(point.x, point.y); 22 + } 23 + return points.length; 24 + } 25 + 26 + export const findSolutionOne = countAndRemoveRolls; 27 + 28 + export const findSolutionTwo = ( 29 + grid: ReturnType<typeof parseInput> 30 + ): number => { 31 + let solution = 0; 32 + let removing = countAndRemoveRolls(grid); 33 + while (removing > 0) { 34 + solution += removing; 35 + removing = countAndRemoveRolls(grid); 36 + } 37 + return solution; 38 + }; 39 + 40 + export { input };
+137
src/solutions/2025/04/input.ts
··· 1 + export default `@@.@@@@..@@@..@@@.@@.@@@@@@@.@@@.@@@@@@@@.@@@@@@@..@@@@@@.@@.....@@.@..@.@@@.@.@.@@@.@...@@@@@.@.@.@.@.@@@@@@@...@...@.@...@.@.@@@@@@@@@@ 2 + .@.@@.@@..@@@@@.@..@..@@..@@.@@@.@@...@@.@.@.@.@..@..@@.@@@@.@.@@@@@@@@.@@.@.@.@.@@@..@@@@@..@.@@@.@.@..@@..@@.@@@.@...@@.@@@@@.@..@..@.@ 3 + .@.@@@.@@.@.@@.@@@@@.@.@@@.@.@@@@@.@...@@@@@@@@@.@@@.@@.@@.@..@@..@.@@@@..@@@...@.@.@@@@..@..@@.@@...@.@..@@@@@@@.@@@..@@@..@@@@.@@@.@@@@ 4 + @@.@@@@@@.@@@...@@.@@@..@@@....@.@@@@@@.@@@.@..@..@@@.@@....@...@@@.@@..@.@@@@..@@@...@@.@..@@.@@@...@.@@.@@.@@..@@.@@@@@@.@@..@.@@.@@@.. 5 + @@@@@@....@.@@@.@.@@@@.@.@@@@..@@@@.@@...@.@@@.@@..@@@@@@@@.@@.@@@@@...@...@@@@@@@.@@..@@@.@@.@@...@..@@.@@@@@..@@.@...@.@@@@..@.@@..@@.@ 6 + @.@..@.@.@@.@..@@..@@@@@@.@@.@@@@@@.@@..@@@@..@@.@.@@...@@@@@@@@.@@@..@@@@@@.@@.@..@@...@@.@.@...@.@...@@@@@@@@@.@...@...@@@@.@@@@.@@@@.. 7 + @@...@@@@@@.@..@.@@..@@..@.@.@@@..@.@.@@@@.@@@.@@@@@@@...@.@.@@@@@@.@@@...@@@@@.@@..@..@@@@.@@..@@@@@@@@...@.@.@...@@@@..@@.@@@@.@@@@@@@@ 8 + @@@@.@@@@.@@.@.@@@@@@@@..@..@@@@...@@@@@..@@@@.@..@....@@@@@@@@.@.@..@@...@@..@@@@@.@.@...@@@.@@@@@@@@@@@.@.@..@.@@@..@@.@@..@@@@@@@@..@. 9 + @@.@..@@.@@@@@@..@.@@@@@@..@@.@@.@@@.@.@.@@..@@@.@.@@@@@@.@@@@..@@@@@@@@@@@@@@@..@@@.@.@@@@..@...@@@@@@@@@@@@.@...@@..@@.@@@..@.@@@@.@@.@ 10 + @.@@@.@@.@.@@.@.@@@@@@.@@@@.@....@@@.@@.@@@@@.@@@.@.@@...@@.@@@.@@@@@.@@@@.@.@.@@@@@...@@...@@.@.@.@.@@@@@.@@@@.@@@.@@@..@...@@@@@@.@.@@@ 11 + @@@@.@@@@@@@@@@@@.@@@@@@@@...@@@..@@.@.@.@@.@..@.@@@@@.@@...@@@....@..@@@@@@@@@.@.@@@.@.@..@.@.@@.@@@@..@@....@@@@@@@.@@@@@@.@.@@@@@@@@@. 12 + @@@@@@@.@.@@@@@@.@@.@@@@.@.@....@@@@..@@.@@@.@.@@@@@...@@@@@@.@.@@@@@@@@@..@@..@@..@@@@.@..@...@@@@.....@.@@@.@.@@@.@@@@@.@@..@.@...@...@ 13 + ..@@..@.@....@@.@@@..@@@@@.@@@@..@@@@.@.@.@@@...@@@.@@.@.@@@...@@@@@..@.@.......@@..@@.@.@@@@@@.@@@@@@@.@@.@@.@..@@@.@@@.@@@...@@.@.@@@.. 14 + @...@@.@@.@..@@@@@..@@@.@@.@@@@@@@@@..@@.@@@@..@@.@@..@@@@@.@@@@@@@@@@@.@.@.@@..@@..@@@.@@@@..@@@@.@@@@..@.@..@@@@..@@@.@..@@.@..@@.@.@.. 15 + @.@@@@.@..@@@@@@.@.@@@@@@@@...@@@@@@.@@@@@@@@@@@@@@@.@...@@@.@.@@@@@@@@@.@@.@@@..@@@@@@@@......@@@@..@@@@.@@@@@@@.@@@@@@@@@@@..@.@@...@.@ 16 + @@.@@@@.@.@@@@@@.@.@.@..@..@@@@@@@@@.@@@@@@.@.@@..@@.@@@@@..@@@@@@@..@@.@@@@@@...@@@.@@.@@@@..@.@@.@.@@@.@@@@@@@..@@@@.@.@@@@@@@@...@@@.. 17 + @.@.@..@@...@@@@.@..@@@@.@@@..@@@.@@@@.@@@@@.@@@@.@@@..@@.@@.@@@@@..@.@@.@@....@@.@@..@@.@..@@.@@.@@@@@@.@@@@.@..@@@.@.@.@@@@@@@@....@@.. 18 + @@@.@@..@@@.@@@...@.@@@@@@@.@..@@@@@.@@@@...@...@@@.@..@@@..@.@.@.@@@..@@@@@@@@.@@.@.@.@..@.@@@@.@.@.@@@@@@@@@@.@@.@@@@.@@@.@@@@@@@@@.@.@ 19 + @@.@..@@@@@@@@.@@@.@.@@.@@..@@.@@..@@@@.@@.@@@@@.@..@..@@@@@@@..@..@@@..@.@..@@.@@.@@@@..@@@..@@@.@@.@.@@@@@@....@..@@@.@@.@..@..@@@@.@.@ 20 + @.@..@@@..@@@@@@..@@@.@@@@.@..@@@.@.@.@@.@.@.@@@@.@@....@.@@..@...@@@@@@@@@@@.@@@@@@@@.@@@@@@@@.@@.@@@@.@@@.@..@@@@@..@@..@@@@@.@.@@..@@. 21 + @@@@@@@@.@@@@@.@@@@.@..@@@@@..@.@@@@@@.@@@..@@.@.@.@.@@..@@@.@@@.@@@@.@.@@.@@@...@@..@.@@@...@.@@@@@@.@@..@.@.@@@..@@.@@@@.@.@.@@...@@@.@ 22 + @@@.@@@@.@.@.@.@@@@...@.@@.@@.....@@..@....@@@@@.@@..@@@@@..@..@..@.@@@.@@.@.@@@@@@@...@@.@@@@.@@@.@@..@@.@@@@..@.@@@.@@@@@@@@@@@@@@.@@.@ 23 + @@@@@@@@@.@@@@.@@.@.@@@@@@.@@..@@@.@@.@.@@@@@.@.@..@@@@@..@@@.@@@@.@@@@@@@@@.@...@@@@..@@@@...@.@..@....@..@..@..@@.@@@@@@@@.@@@@..@@.@@. 24 + @@.@.@..@.@@@@@..@@@@..@..@@@@@.@.@.@.@@.@.@..@@.@@.@.@.@..@....@..@@@@@@@.@@.@.@@@@@@@@@@@@..@@@.@.@.@.@..@...@...@@@@@.@@..@@@.@..@.@@. 25 + ..@@.@@.@..@@@@.@@@@@..@@.@@@@.@.@@.@@@@.@@.@.@@.@@..@@@@.@@@@.@@@.@.@@@@.@@@.@...@.....@@.@.@@..@.@.@@..@@@..@@@@@@..@.@@@@@@....@..@@@. 26 + @@@..@@@@@.@.@@@..@..@@@@.@.@.@@@.@@.@...@....@@@@@.@@..@@@.@@.@@@.@@@.@@..@...@@....@.@@@@@@@.@@...@..@.@.@@..@@..@@.@..@@@@.@@@@.@@@@@. 27 + .@.@@.@@@@.@..@@@@.@@@@@@@.@@@@@@.@.@@@@@@@.@@@.@@@@@.@@@.@.@.....@@@@....@..@.@@@.@@@@@@...@@@..@@.@@.@@@...@@@@@@@@.@@@@@@...@@@.@@@@.. 28 + @..@@@.@@@.@...@@..@.@.@@.@@@.@....@...@.@@.@@@@.@@.@..@.@@@.@..@@@@.@@.@.@@@@@@@..@@@@@@@@@@@...@@@.@.@@@.@@...@@@@@@@..@@@.@@@@..@@..@@ 29 + @..@.@@@@.@@@@..@..@@..@.@@.@@@@@.@@.@..@..@@.@@@...@@@@@@@.@@....@@@@@@.@@@.@@.@@.@@@@@@@@@@..@@.@@@.@@@@.@@.@.@...@@.@@.@@@...@@@@@@..@ 30 + @.@@@@...@@@....@@.@@@...@@@@@@.@@@.@.@.@@.@@@@@@.@@@@@@..@....@@@@.@..@..@...@@.@@@@@@@..@.@@@.@@@@@@@@@@@@@.@@@@@@@@@@.@@.@@@@@@...@@.@ 31 + .@..@@@@.@...@.@@.@@@@@@.@@@@@@.@@@.@@@@@@..@.@@@@@@@@.@.@@@@@..@.@..@..@@.@@@@@.@..@....@@@@....@@.@@@.@@@@@@@@@@@.@...@@@@.@.@@..@@@@.. 32 + @.@@@.@....@@@@..@.@@@.@@@@@@.@.@@@@@@@@@@@@@@@@@@@@...@..@.@@.@@@@@@@.@@@@@..@@..@@@@@...@@.@@.@@@.@@@.@.@...@..@@@@@.@@@..@@@.@@@.@@@@. 33 + @@..@.@......@@@.@@@@..@@.@@..@@.@@@...@@@@@.@@..@..@@.@@@@@@@@@@@.@@@@@@..@.@@.@@@@@@@@@@.....@@@.@.@@@@@@@@@@@@@.@@@.@@@.@@@@@@..@@.@.@ 34 + .@.@@@..@....@@@@..@@.@@@.@@@@@@@@@@@@..@@..@@.@@@@@@.@.@.@@@..@@@.@@@@@@.@@@@...@@@@@.@.@@@@..@@@@@@.@..@@@@@.@@@@@..@@@@@@.@.@@@@@@@@@. 35 + @..@@@@.@@@@.@.@.@@..@@.@@@@@@@@@@@.@...@.@.@.@.@.@@@@@@@.@.@@...@@@@...@.@@@@...@@.@@..@@@.@@@.@@.@.@.@@@@@@@@.@@@@.@@...@@@@@@..@@@..@@ 36 + .@@@@@.@.@@@.@@@@.@@@@@@@@@@@@.@@.@@@.@@..@..@@@@@@..@..@@..@@@@..@@@@.@@..@@@@@@..@@@@@@.@@.@@@.@@@@@@@@..@..@@.@@.@@@.@@@@@@@@@@....@@. 37 + @@@.@@@.@@@@@@@@@@...@.@..@@@.@.@@.@@.@@@@@..@@@@@.@@@@.@.@@.@.@@@@..@@@..@.@..@.@@@@@@.@.@@@@@@.@.@.@.@@@@@...@@.@@@@@.@@@@@@@@@@@@@@@@@ 38 + @@@.@@.@@@...@..@..@.@@@.@@@@.@.@@@@..@@@..@@.@@@@@@.@@@@@@@@.@@@@@@@@@@@@@...@.@...@.@.@.@@@@@@@@.@@.@..@@.@..@@@@..@@@@@@.@@@@@@@@@@@.@ 39 + .@..@.@.@@@@@.@@@.@.@@@..@@@@@.@..@@@@@@@@@@..@.@@@@@...@@@@@@@@@@..@..@@@...@@@@@.@@@..@@@@@@@.@.@...@@@..@.@...@.@@.@@@@.@@@@@..@@.@.@@ 40 + @..@@@.@@@@@@.@@@.@@@@@@@@@@.@@@.@@@@@@.@@@@@..@@@@@@@@@.@@.@..@@.@@@@@.@@...@@.@@@@@@.@@@@@@..@@@@.@@@@@@@.@@@@@..@@@.@@@@.@@.@@@@.@@.@. 41 + @.@@.@@@.@.@..@.@@..@.@@..@@@@@.@@@@.@.@..@.@@.@.@@@@@..@@.@.@@@@@.@@@.@@.@@@@..@@..@..@.@...@@..@@@.@@@.@@@@..@.@@@.@@.@..@@@@@@@@@@.@.. 42 + @@.@.@@.@.@@.@@.@.@@@@@@@@@@@..@..@@.@@.@..@@.@@@@.@.@.@@@@@@.@.@@@@@@@@@@@@@@@@..@@..@@.@.@@@@@.@..@.@@..@@@@.@@.@@..@.@.@@..@@@@.@..@.. 43 + @@..@.@@@@.@@..@@@@@...@.@@..@@..@.@.@.@@@.@...@@.@@@@@..@.@@.@.@@@..@.@@@@@@.@@@@@@@@@@@.@.@@...@.@@..@.@...@..@@@@.@.@...@@@@...@..@@.. 44 + @@@.@@@@..@..@.@@.@.@@.@.@@@.@@.@@@..@.@..@..@@@@....@@.@.@.@@@.@@@.@@.@.@@..@@@@@@@@@@@..@@@@...@@@@@.@..@.@.@@@.@@@@.@.@.@.@..@@@.@@.@. 45 + @@.@@@@.@.@@@.@@@@@@@@..@@@@@@.@@..@@@@.@@@..@@@@@@@@.@@..@@..@@@@@.@@@@.@.@.@.@.@.@@......@@@..@.@..@.@@@...@@@@@@...@@@@@@@@@.@.@.@@@@. 46 + .@@.@@@@@@.@@@@@@.@@@@@.@@@@.@@@.@@.@@..@@@@..@.@@@@@.@.@@@@.@@@@@@.@.@@@..@.@..@.@.@..@.@..@..@@...@.@...@...@@.@...@@.@.@@@..@.@@@@@... 47 + @.@@.@@...@@@.@.@@@....@@.@@.@.@@@@.@@..@@.@@@@@.@@..@@.@@@@@@@@@..@@.@@...@.@@@.@.@.@@@.@@...@.@.@..@@@@@.........@@@@.@.@@.@...@@@.@.@@ 48 + .@.@..@@@@.@.@@@.@@@@..@..@.@.@@.@.@@..@.@@@@.@@@.@.@.@@@@.@...@@@@@@@@@@@@@@.@@.@..@@@@.@@.@.@@.@..@@.@@@.@@@@@..@@@.@@@@@@.@@@.@@@@.@@. 49 + @@@.@.@.@.@@..@.@@@@@.@.@@@@@@@@@@@@@....@@@@.@.@.@@@@.@.@...@@@@..@@..@@@@@.@@@@@@.@@.@@@..@.@@@@@.@.@@@@@.@..@@@@@@@@.@.@...@@@@.@@@... 50 + ..@@@@@@@@@..@..@.@@@@.@@@.@.@@@...@@.@.@@.@@@.@@.@.@@@.@.@..@.@@@..@@@.@@.@.@@.@@@@@@...@...@@......@@@.@.@@@@.@@@..@..@...@@@@@.@@@@.@@ 51 + @.@@@@..@@@@...@@..@..@@@@@@.@@@@@..@@.@.@...@.@@.@@.@@@@.@.@@@@.@..@.@@...@.@......@@..@@.@.@@@.@@.@@.@@@.@@@@@@@@@.@@@@..@.@@@@@.@@@.@@ 52 + @@@.@@.@..@..@..@@@.@@@@@.@@@.......@..@@@@@@@@...@..@@@@@..@@@@.@.@@.@@.@.@.@@@.@..@@..@@@@@..@@@@@@.@...@.@@@.@@@@.@@.@@.@@@..@@@..@@@@ 53 + @.@..@...@@@@.@@..@..@@@..@.@..@@@.@...@@@@@@@..@.@....@@@@@@@@.@@..@...@.@.@.....@@@@.@..@@.@@@@..@..@@.@@.@@.@..@@.@.@@@@@@@.@@@@@@@@@@ 54 + @@.@@.@.@@@@@@@@@@@@@@@.@.@.@@@@@@@....@@@.@@.@.@@@..@@@..@@@@.@@@.@.@@...@@@@@@@@@..@@.@.@@@....@@.@@@@@.@@@@.@@@@@@@@@@@@.@@@@.@.@@..@@ 55 + .@@.@..@@@.@..@.@.@@.@.@@@@.@@.@.@@@..@@@@@@@@.@@.@..@@@@@@.@@.@@@@.@@..@@@.@@@@@@@@.@@@.@@@@.@..@@.@.@.@@..@@@.@..@@@@.@.@@.@@@.@....@.. 56 + ...@@@@@.@@@@@@.@@@@@..@.@@@@@.@@@.@@@.@@@@@@.@@@@@.@@@@@.@.@.@@.@..@@@@....@@@@@...@@.@.@..@@@@@@@@@@@@....@.@@@@@@@@@.@@@@@@@@@@@@@.@@@ 57 + @@..@.@@@@@@@..@@@@@.@.@@@...@@@.@@.@@@@@..@@@@@@.@@@@@@@@@@@@.@@.@..@@@.@@......@@@.@@@..@....@@.@@@@...@@@@@@@.@@@@@@@@..@@@@.@@@.@.@.@ 58 + @@@@@@@@.@.@.@@@..@@@.@@@.@@@@@@@@.@...@@@@.@@@@.@@...@@.@..@.@@.@.....@@@.@.@@@@@@@@@@@@@.@.@@@@..@...@.@.@.@@@.@@.@..@@.@@@@@..@.@@@@.. 59 + @.@.@..@@@.@@@@@.@...@@@@@.@@@@@.@.@@@.@..@@.@@@..@.@.@@.@.@.@@..@@@.@@@@@...@@@@@@@.@.@@.@@..@..@@...@.......@@@.@@.@.@@@@....@.@.@..@@@ 60 + @.@.@@...@@@@@@@@.@@@@.@@.@@.@@@@@...@@.@.@@@.@@...@@.@..@.@@@.@.@.@@.@@..@.@@.@..@@.@@@@.@...@@@@@@..@@..@.@..@..@@.@.@@@@.@..@@.@....@. 61 + .@..@@@@@..@@@@..@@@@@.@@@@.@@@@.@@.@@..@@@.@@@@......@@@@@@@@@@@@.@@....@@@.@.@@@@.@@...@@..@@@@...@@.@@@@.@@.@@@@@..@@@@..@.@.@.@@....@ 62 + @.@.@.@@.@@..@@.@.@@@@@@@@@.@@@@@@@.@@@@..@@.@.@..@@@..@@@@@@@@@.@.@@@.@..@@.@@.@@.@@.@.@.@@@@@.@.@@@@..@@.@.@@..@@.@.@....@...@@.@@@.@@. 63 + @@@@.@@@..@.@.@@@.@.@@@@@@@@@@@@@@@.@@.@@@.@@.@@@@@@@.....@@.@@@@@@@@..@@@.@.@.@@@@.@@.@@@@@.@@.@.@..@@@@.@@.@@.@@@@@@@@@.@@..@.@@@...@@@ 64 + @@.@..@@@@...@.@.@..@@@@@@..@@@@..@.@@.@..@@@..@@@@@..@.@..@@@@.@@@..@..@..@.@@@@..@@.@@@@.@.@@@@..@..@@.@@@@.@@..@@..@@.....@@@@@....@@. 65 + @@@@@@@@.....@@.@.@.@@..@@@.....@@@@@@@@.@@@.@@@@.@@@@.@@.@@.@@@..@@@...@@.@.@.@@@.@@@.@..@.@.@@@..@@..@@@.@.@@@@...@@....@@@@@@..@@..@@. 66 + .@.@@.@@@..@@@..@.@...@@@@@@.@...@@@@.@@@@@@..@@@.@.@@.@...@@..@@@.@@.@@@...@..@@.@@@..@@@.@.@@.@@@@@.@@@@@..@.@.@.@@......@.@.@.@@..@@@@ 67 + @@@@@@.@@@.@..@@@@@@.@@@@.@@@@@.@.@.@..@@.@...@.@@@@@@@@@@.@@@@....@@@@@@@@@.@@.@@....@.@.@@.@@@@.@.@.@@.@@@@@....@..@..@@@@@.@@@@@@@.@@. 68 + @@.@@@..@@.@@.@@@...@.....@@@@@@@@@.@@.@@.@.@@@@@@@@@.@.@@.@@..@...@@.@.@@@@@@@.@@@@@.@@@...@@.@@.@@@@@@@.@@.@.@.@@@@@.@@..@@@@.@.@.@@@.@ 69 + @@@@@@@.@.@@@.@.@.@@@@.@..@@@....@..........@.@..@@.@.@@@@.@.@@@...@...@....@..@..@..@@.@@@.@@.@@.@...@@@.@.@@@@@.@@@.@@.@.@....@@@@@.@@@ 70 + @@@@..@@@@@.@..@@@@.@.@..@..@@@@@@.@.@@@@@@@@@.@@@@@.@@..@@@@.@@..@@@@@@.@@@...@@@@@@.@.@.@@@@@.@@@@@@@@@@@..@@..@..@@...@@....@@.@.@@@.. 71 + @@.@@@....@.@@.@@.@@..@......@.@@@@@@@..@@@@@@@@@@@@.@..@@@@@@@..@@@@@..@@@@.@@@..@@@@@.@..@@.@@@@@@@@@@@.@.@@@@@.@@@.@.@..@.@@@..@@.@@.@ 72 + @@@..@@.@.@@..@@..@..@@@@@@..@..@@.@@@@@.@..@.@@@@@@@@.@@@@..@@@.....@.@@@@.@@.@.@.@....@@@..@.@@@...@.@@@@@@@@.@@...@.@@..@@.@@@@@@.@@@. 73 + @..@@@@@..@.@..@@@@@@..@@@@.@@@@@@@@@@@@@..@.@@@@...@@@@@@@.@.@@@@@@@.@.@@.@@.@..@..@@@@@@...@@@.@@@.@@@@.@@@@@..@@@.@.@...@@@@..@.@@.@.@ 74 + @@..@..@..@@@@.@.@.@@@@@@@@@.@@@@@.@.@@@.@@.@@.@@..@.@..@.@@@@@@@.@..@.@@.@@@.@...@.@.@@@@.@.@@@.@@@@@@@@@@......@@.@@.@..@.@..@..@@.@@@@ 75 + @.@.@@..@@@@@@.@@..@.@@@.@@@@.@@..@.@.@@@..@....@@..@...@@@@@@@@@@.@@@..@..@.@@@@@@@@@@.@.@@@@@.@@.@...@.@@@..@@.@..@.@@@@.@.@@@@@@@.@@.@ 76 + @@@@.@..@@@@@@@.@@@.@.@.@@@..@.@@.@@@@.@.@@@.@@.@@@.@@@@.@.@@.@..@@@@.@@@@@@@..@@.@@@@@.@@@...@.@....@@@.....@@@@@@@@.@@@@...@@..@@.@.@@@ 77 + .@.@..@@.@.@@@..@@@..@@@@@@@..@@....@@@.@@.@@@.@@@.@.@@.@@@@@@@@@@@@@@@@@@@@@@@@@.@.@@@@@@@@@@@@.@@@.@.@@.@@@@@@@@@.@@.@@@@.@@.@.@.@@@@@@ 78 + @@@..@@.@@.@.@@@.@@..@@.@..@@..@@..@.@@@@@@@@@.@@.@@@@@@.@@@@.@.@@.@.@@@@..@@@@.@@@.@@@@@@@.@@@@@@.@@@.@@..@@@@..@@..@@@...@@@@..@@.....@ 79 + @.@@@@@...@@@..@@.@.@@@.@.@@..@@.@.@@@@@@....@@.@.@.@@@@.@@.@@@@@@@@.@...@@@..@@..@.@@@@@@.@..@.@@.@@@@@@@@@...@@.@@@@@@@.@@...@.@@.@@@@@ 80 + @@@@.@@@.@...@@.@@@..@.@@@.@@@@..@.@@.@@..@.@@@.@@@@@@..@@@@@..@@@.@@..@@..@@@@@@@@@@.@.@@.@..@@@@@@.@@@@@.@@.@@..@@.@...@@@.@@@@@@.@@@@. 81 + .@@@..@.@@.....@@@@@@@@@@.@@@@@.@@@@@@..@.@@@....@@@@@.@.@.@@@@...@.@@@@.@@@@@@.@.@@@@.@@@@@@.......@.....@@@@@.....@@.@@.@.@@@@.@@....@@ 82 + .@@@@..@.@@@@...@.@.@..@@@..@@.@@@.@@.@@.@.@...@..@.@.@@@@@.@@@@@.@@@.@.@@@.@@@.@@@.@.@@@@..@@..@@@..@@.@@..@@.@@@@.@@.@@@@@@@@@...@@@.@@ 83 + .@@@.@@.@@@@@@.....@....@@@.@@....@@.@@@@@@..@@.@@@@@@@@@@@@.@@@.@..@@.@@@@@.@@@@@....@@.@@.@@@.@@@.@...@@@@@@.@..@@@@@@...@.@..@@@.@@@.@ 84 + .@@@..@.@@@...@.@@...@.@..@.@..@..@....@@@...@@@@@@.@.@@.@@@@@@..@@@@..@@@@@@@@@.@..@@@@..@@@@@@..@@@.@@.@.@@.@@@.@.......@@@@.@...@@..@@ 85 + @@@@..@@.@..@.@.@@.@@...@.@@.@....@@@@.@.@.@.@..@.@@@@..@.@@@@.@@@@@@@@..@@..@@@@@@..@@@.@@@@@..@@@.@..@@@@@@.@@..@@@@...@.@@.@..@....@@. 86 + @.@@.@..@@.@.....@@.@@@.@.@.@.@@@@.@@.@@@..@...@@.@@.@.@..@@@@.....@@@@..@@@.@.@@.@.@@@.@.@@@.@@@@.@@.@@@@@@.@.@@.@.@@.@@.@@@@.@..@..@.@@ 87 + .@.@..@@@@.@@..@@@...@@@@...@@@@.@..@@@@@@.@...@@@..@.@@...@@@.@@@@@..@@....@@.@@@@@@@@..@.@.@.@.@@@@.@@@..@@@@.@@@@@@..@.@@.@.@@.@@@@.@@ 88 + @..@@...@.@...@....@@@@@.@@@.@...@...@..@@@.@@@@...@@@@@@@.@@@@@@.@@@.@@@@@.@...@..@@@.@.@@.@@@..@@@@...@@...@@@.@...@@.@@.@.@@..@.@@@@.. 89 + @@@@@@@...@@@@@.@....@@.@@..@.@@@@..@@..@...@@.@@@@@.@@..@@..@@@..@.@@.@.@..@..@@...@@@..@.@@@@@...@..@.@@@@@@@@@@..@..@.@.@@.@@.@.@.@@.@ 90 + @@@.@@..@@@.@@@@.@@@@@@...@@..@.@@@@@..@@@@..@.@@@@@.@@.....@@@..@.@@@@..@.@..@.@@@@@@..@@.@@@.@.@..@@@@@....@.@@@@@@@@..@.@@@@@.@.@@@@.. 91 + @@@.@...@.@@@@.@.@.@@.@@.@@..@.@@@@@@@.@@..@@@..@@@@.@....@@.@.@@@@@@.@.@@@@@..@.@@@@@@@.@.@.@@@....@@@.@@@.@@@@.@@.@@@..@@@@@@@@@@@@@@@@ 92 + @@.....@@..@.@..@@@.@...@...@....@.@@.@..@.@@.@@@@.@.@..@..@.@@@@.@@..@.@.@.@@.@@@.@..@@@@@..@.@..@.@@..@....@.@@@..@.@@.@@@@@@@@.@@@@.@. 93 + @@@...@@@.@..@.@@..@..@..@@@@.@.@@@.@.@@@@@@@@@.@@@..@.@@..@@@@..@.@..@@.@@@@@@@.@@@@@@@.@..@@@..@@@@@@@.@..@.@@@@.@@@...@@@.@@.@..@@@.@@ 94 + @@@.@.@.@@@.@.@...@@@..@..@.@.@@.@@@@@@@@..@@@@@.@.@..@@.@.@@.@@@.@.@@..@.@@@@@@.@.@.@@.....@...@@@@@@@@@.@@.@.@.@@@@.@@.@@.@.@@@@@...@.@ 95 + @@@.@.@.@@..@@.@@@@@.@@@@..@@@@@@@...@...@.@.@@@..@@@@@@.@@@@..@@@.@..@.@.@@@.@..@.@@@@@.@@@@..@@@@.@@@@..@.@.@.@@@.@@@@.@@@@@@..@.@@@@.@ 96 + @@@@.@.@@@@@@.@@@@@@.....@.@.@@@.@.@@@@.@@@@@@@.@@..@@@@@@@@@@@@....@@@@...@.@.@.@@.@.@.@.@.....@@.@@@@.@.@@...@....@@@@@..@@...@@@@@@.@. 97 + @.@@@.@@.@@@@.@@.@..@@.@@@@..@@@@@@.@.@..@@@@@@..@.@.@.@@.@@..@@@@@.@@@@...@@@@@.@@@@.@@@@@@@...@.@@.@@@@@...@@@@@@@@@@@@.@@@@@..@.@..@@@ 98 + .@.....@@..@@.@.@@@@.@@.@.@@.@@.@.@@@@@.@.@.@@.@.@@@@.@@@@...@.@@@@@@@..@@@..@@@@@.@@@@.@.@.@.@...@...@.@@.@@@...@@..@@@.@.@@@@@.@..@@@.@ 99 + @@@@.@@.....@@.@.@.@@@.@.@.@@@@@.@@@...@@@@@@@.@.@@@.@...@.@@@@.@@@@@@@@.@@@@@@....@@@@.@@@..@@.@@@..@@@@.@@.@@@..@.@@.@@.@@@@@@@@@@..@@. 100 + .@@@@@@@.@@@@.@.@@..@@@@@@@@@.@@@@@....@..@..@@.@@@@@@@..@..@@@...@@@@@@.@@.@@..@@@@@...@@@@.@@@@..@.@.@@@@..@@@@..@...@@.@@@@@@@.@@..... 101 + @.@.@.@@@@@@@...@@.@@@...@.@@.@..@.@.@.@@@.@@..@@@.@@@@..@....@..@@@.@..@.@....@.@@@.@.@.@@.@@@.@@@@..@@@@.@@@@.@@@@@@@@@@@@..@....@@.@@@ 102 + @.@@@.@.@@@@.@@.@@@@@.@@@@@@@@@@@@@@@@..@.@@@@.@@@@@..@@@@@@@.@.@@@@.@.@.@@@@@.@@.@.@@@@@..@@.@.@@@..@@@@.@@@@.@..@@.@@.@@@.@.@@..@@@..@@ 103 + .@@@@.@@.@@.@@@.@.@.@@@@@.@@@@..@@@@@@..@.@@@@.@@.@.@.@@..@..@@....@@@@@.@.@.@@...@.@@@..@@.@@@@@@@@.@.@@...@.@..@@.@@@.@@@@@@@@@@@.@@.@@ 104 + @.@@...@@@.@@@.@@@@.@@@..@@.@.@@@@@@@@@@.@@@@@.@@@@@@@.@...@@.@.@@@.@.@.@@@@..@@.@@.@@.@@@@@..@.@@@....@@@@@@....@@..@.@@@@@@@@..@@@@@@@@ 105 + .@.@@.@@.@..@@@@@@@.@.@@@...@.@.@.@@@@@@@@.@@@.@@.@@@@@@@.@.@.@@@.@@@@@@@@.@.@@...@@..@..@@.@@@@..@@.@@.@@@..@..@@.@@@.@@@@@@@@@@@.@..@@@ 106 + @@@..@@@@@@@@@@@@@..@.@@@...@@.@@@@..@@@@.@@.@@.@@@@@@...@.@.@@@@@.@.@@.@.@@@@@.@@@@...@.@@@.@.@@.@@@@@.@@@@.@..@@@..@..@@@@.@@.@..@.@@@. 107 + @@@@.@@@.@....@@@@@@@.@....@@@.@...@@@@@...@@@@.@@.@@@@....@.@@@@@.@@.@@@@@@@..@@.@@.@.@@.@@@.@.@.@@.@.@@@@.@@..@@@@.@@@@.@@@@@..@.@.@..@ 108 + @@..@@@..@@.@@@@...@..@....@...@.@.@@.@@@.@@@@@....@@@@.@@.@..@@@@.@@@@@.@@@..@@@.@@.@..@...@@@.@..@@@..@.@.@@.@.@.@...@@.@.@@@.@@..@.@.. 109 + .@.@.@.@@@@@..@@@@@@.@@@@.@@@..@@@@@@.@..@.@@@@..@@@@@..@.@@@..@@.@@...@@@@.@@@@.@@.@.@@..@..@@@..@@@@..@@@@@...@@.@@...@@..@.@....@@.@.@ 110 + @..@@@.....@..@@@@.@.@@@@.@@@@..@@@.@@@@.@.@@...@@@@.@@@@@@@@@.@.@@@...@@@.@..@@.@.@.@@@@...@.@@@@.@@@@@.@@@@@@@@.@@.@@.@.@@@@@@@@@@...@@ 111 + @@@.@.@@@@@@@@@@@@@@.@@@.@@..@@@@.@@@.@@.@.@@@@@@..@@@@@@.@@.@@@@.@...@@.@@@@@.@@@@...@...@@.@@@@@..@@@.@@.@@...@@@@@@@..@@@@...@..@@@..@ 112 + @.@@@@..@..@@@@@@@@@.@@@@@.@@@@@.@@@@@.@@.@@..@@...@@.@..@@.@@@@@@@@...@@@.@@@@@@@@...@@@@@..@@@.@..@.@@@.@...@.@.@@@@@@@@@.@..@@@@@@@@.@ 113 + @.@@@@@@@@..@@@@.@@@@@@..@@@.@@@.@@..@@.@@@@@@@@@.@.@@...@@..@@.@@@@.@@@@@@@@@@@@.@@@@@.@@.@.@@@.@.@@..@@@@@@@@.@@..@@@@@@@@..@..@@@@@@.. 114 + @.@.@@.@@@@@...@@@.@..@@@@..@...@..@@@@..@.@.@@@.@@@@@@.@..@@.@@@.@.@...@.@@@.@@@@.@@@.@@.@.@@@@@@@@@@.@@.@.@@@@@@@@@...@.@@.@@.@...@@@@@ 115 + ..@@@..@@@.@.@@@@.@@@.@@..@@.@.@.@.@@@.@.@@@@@@@@@..@.@..@.@@@..@@...@@..@.@..@...@@@@..@.@@.@@.@@@@@@..@..@@@...@@@.@.@@@.@.@@@...@@@@@. 116 + .@.@@.@@@@.@@@@..@@@.@.@@@@@@.@..@@@.@@.@@@@@@@@..@@@..@..@@@...@@@.@@.@@@....@@@@@@@@@@@@@..@@.@@@@..@@@@.@..@@@@.@.@..@@@@@@@@.@.@.@.@@ 117 + @@@@.@@@@.@..@@@..@@@@.@@.@@.@..@@@@@@....@@@@@..@@@@..@@.@@@@@@.@...@.@@..@@.@@@@@@@@.@.@@@@@.....@..@.@@@@.@@@.@@@.@@..@@@@@@@@@.@..@@. 118 + ..@@@@@@@@.@@..@@@.@@.@...@@@..@..@..@@@..@@@@@.@@@..@@@@.@.@.@.@.@@.@@@@@@.@@.@@.@@@@.@@...@.@@@@@@.@.@.@@@...@@@@.@@@.@@@.@.@@..@@@@..@ 119 + ..@@.@..@@@@@@@@@@@@@@.@@@@.@@@.@@@@@@.@@@@@..@@...@@...@@@.@..@@.@.@@.@...@.@@.@@..@@@@.@..@@@....@.@@@@.@...@@@@.@@@..@@..@@@@@.@@@@@@@ 120 + @@@@@.@@@..@@..@.@...@..@@.....@.@.@@...@.@.@.@@.@.@@..@@@@..@@@@@@@@.@.@@@@@@.@@@.@@@@@...@@.@.@@@..@@@@.@@@.@@.@@.@@.@@.@@@@@@..@@.@.@@ 121 + @@@@@@@@..@@@@@@.@..@.@.@.@@@@@@@..@.@@@@@.@..@@@.@@@@@@@@@@@@@.@@..@..@.@@@@@@@.@.@.@.@@@.@..@@@@@@@..@@@@..@@@@@.@@@.@@@.@@@@@@@@@...@@ 122 + ..@@.@@..@@@.@@@@@@@.@@.@@@@@.@.@@..@.@@@@@@@.@..@@@@@...@@@@@...@@@@@@@..@@@@@@@@@.@@@@.@@@@@@.@@..@.@@@@@@@@@@@@@@@.@@@.@@.@..@@@@@@@@@ 123 + ..@@@@.@@@@.@@@..@@@.@@..@@@@@@.@@.@...@..@@@@.@.@@@.@@@@@.@@..@@@.@@..@@@@.@...@@@.@@@.@@@@@@@@@@@.@@@..@..@@@@.@@@@.@@@..@@@...@.@@.@@@ 124 + @@@@.@...@.@@@..@@@@@.@@@.@.@@@.@.@.@@.@@.@@@.@@@..@@@@..@@.@@@@@@@.@.@@......@.@@.@@@.@.@@..@@@@@@@@@...@@@.@@..@@..@@@@.@@@@.@@@@..@@@@ 125 + @..@@@@@@@@@..@...@@@@.@@....@@@@@@..@@@@@@@.@@.@@@..@..@...@@@@.@.@@@@.@..@.@@.@@.@@@@@@@@@@@.@..@..@@...@.@.@.@@..@@@@@@.@.@.@@...@@@@@ 126 + .@@@@..@@@@@@@@.@..@@.@@@@.@@@@@....@.@.@.@.@@.@.@...@@..@@.@@@.@@.@@..@.@@@@@..@..@@@..@@@.@.@.@.@@@@@..@.@..@@..@@@@.@.@@@.@@.@@....@@. 127 + @@.@@@@@@..@...@@@@.@@@..@.@@....@@..@@@@@@.....@@.@@@@@@@..@@@..@@.@@@@@@@@..@@@@.@...@.@@@@@.@.@@@@.@.@@@@.@..@..@@@@@.@@@....@.@@@.@@. 128 + .@.@.@@@.@@@@@@@@@@..@.@@.@@.@...@@.@@.@@.@@@@@..@@@.@@@@@@@@@.@..@@.@..@@@@@@..@@.@....@@@@.@..@@@@@..@@@.@@@@@@.@..@@@.@@..@.@..@@@..@@ 129 + .@@@@.@.@@..@@@.@@@@@@@@@.@.@@@@.@.@.@@.@........@.@@...@@@@.@...@@@@..@.@..@.@@@@@@@@.@@@@.@@@@.@.@@@@.@.@.@@...@@.@@....@@@@.@@...@..@. 130 + @..@@@..@@..@@@@.@@@...@@.@@.@@@.@..@@@@@@...@@@@@.@..@@@@.@@@@.@@@.@@@@@..@@@@.@@@@@.@@@..@@....@@@@.@@.@@@@@@@..@@.@@@.@@....@...@@@@@. 131 + .@..@@.@..@.@@@.@...@@@@@@.@@@.@@@@.@.@..@@@@@@@@..@.@@.@@.@.@@....@@@@@@@.@@@..@.@.@@@@@@@@..@@@.@@@@..@@@@@@.@@@@..@..@@@.@..@@@...@..@ 132 + @@.@..@@@@.@@@..@@@.@@@..@.@@@@@...@@@@@@@...@@@@@@@.....@@.@@@.@@@.@.@@.@@.@.@@@@@@@.@@@@@@.@@.@@.@.@@..@.@@@@.@.@.@@@@@@@.@@@@@..@...@@ 133 + @@...@..@....@.@@.@@.@@@@@@@@...@@@@@.@@@.@.@@@@.@..@..@@@@@.@...@@@....@@@@@@@@@..@@@.@..@@@@@@@@@@@@@@..@@@.@@@.@@@@@.@@....@.@.@@@@@@@ 134 + .@.@@@..@@@..@@@@..@@@@@@.@@.@@@@.@.@@@@@@.@@@.@@@@@.@.@@.@@.@@@@.@@@@.@.@@@@@@@@@....@..@@..@@@@...@@..@.@@@@@.@@@..@@@@@@@@@@@..@@@..@. 135 + @@@@.@...@@.@.@.@..@@.@@@@@@.@..@@@@@.@....@@@@@@@@.@@@@.@.@@.@@@@.@@.@.@@@@@@.@@@@@@@..@.@@@@.@@..@@.@@..@@...@@@.@@@.@.@..@.@@@.@@@@@.@ 136 + .@@.@@.@@@@@..@@.@@@@.@.@@@@.@@@@.@@.@@.@@@@@...@@@...@@.@..@@@.@@@@@@@@@@.@@..@@.@@@@@...@...@@@@@@@....@@@.@@..@@@@..@..@..@@@.@@.@@@.. 137 + @@........@.@@@@.@@...@@....@@@...@.@.@..@@@..@@.@@@.@@..@..@@@@@.@@.@@....@.@....@@@.@@@@..@@@.@@@@@...@@@@@@@.@@@@@@@@@@@...@@@@.@..@@.`;
+2 -1
src/solutions/2025/index.ts
··· 3 3 import * as day01 from "./01/index.ts"; 4 4 import * as day02 from "./02/index.ts"; 5 5 import * as day03 from "./03/index.ts"; 6 + import * as day04 from "./04/index.ts"; 6 7 7 - const days: Day<any>[] = [day01, day02, day03]; 8 + const days: Day<any>[] = [day01, day02, day03, day04]; 8 9 9 10 export default days;