Skip to content

Commit 07ff87f

Browse files
committed
day 4
1 parent b538ed8 commit 07ff87f

4 files changed

+940
-0
lines changed

day-04-bingo-squid.example.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
export const exampleDrawnNumbers = [7, 4, 9, 5, 11, 17, 23, 2, 0, 14, 21, 24, 10, 16, 13, 6, 15, 25, 12, 22, 18, 20, 8, 19, 3, 26, 1];
2+
3+
export const exampleBoards = [
4+
[
5+
[22, 13, 17, 11, 0],
6+
[8, 2, 23, 4, 24],
7+
[21, 9, 14, 16, 7],
8+
[6, 10, 3, 18, 5],
9+
[1, 12, 20, 15, 19],
10+
],
11+
[
12+
[3, 15, 0, 2, 22],
13+
[9, 18, 13, 17, 5],
14+
[19, 8, 7, 25, 23],
15+
[20, 11, 10, 24, 4],
16+
[14, 21, 16, 12, 6],
17+
],
18+
[
19+
[14, 21, 17, 24, 4],
20+
[10, 16, 15, 9, 19],
21+
[18, 8, 23, 26, 20],
22+
[22, 11, 13, 6, 5],
23+
[2, 0, 12, 3, 7],
24+
],
25+
];

0 commit comments

Comments
 (0)