Skip to content

Commit b460098

Browse files
committed
Solve day 25
1 parent d46d0ca commit b460098

File tree

6 files changed

+1249
-1
lines changed

6 files changed

+1249
-1
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,20 @@ This repository contains my [Advent of Code 2023](https://adventofcode.com/2023)
363363
<td>75</td>
364364
<td>789</td>
365365
</tr>
366+
<tr>
367+
<td>
368+
<a href="https://adventofcode.com/2023/day/25">Day 25</a>
369+
(<a href="https://github.com/jmerle/advent-of-code-2023/tree/master/src/day25">code</a>)
370+
</td>
371+
<td>00:06:27</td>
372+
<td>16</td>
373+
<td>85</td>
374+
<td>00:06:33</td>
375+
<td>16</td>
376+
<td>85</td>
377+
<td>63</td>
378+
<td>959</td>
379+
</tr>
366380
</tbody>
367381
</table>
368382
<!-- results-end -->

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
networkx
12
python-dotenv
23
requests
34
watchfiles

scripts/readme.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
None, # Day 22
2828
84, # Day 23
2929
75, # Day 24
30-
None, # Day 25
30+
63, # Day 25
3131
]
3232

3333
def main() -> None:

src/day25/example.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
jqt: rhn xhk nvd
2+
rsh: frs pzl lsr
3+
xhk: hfx
4+
cmg: qnr nvd lhk bvb
5+
rhn: xhk bvb hfx
6+
bvb: xhk hfx
7+
pzl: lsr hfx nvd
8+
qnr: nvd
9+
ntq: jqt hfx bvb xhk
10+
nvd: lhk
11+
lsr: lhk
12+
rzs: qnr cmg lsr rsh
13+
frs: qnr lhk lsr

0 commit comments

Comments
 (0)