2025 day 11 in Python

This commit is contained in:
2025-12-11 09:44:39 +01:00
parent ff8b8dac0c
commit a8a1c85498
5 changed files with 113 additions and 0 deletions

10
2025/day11/README.md Normal file
View File

@@ -0,0 +1,10 @@
# Day 11: Python
Straightforward. Uses `networkx` because I thought it would be very helpful but it only really saves
me from writing a topological sort algorithm in the end.
```console
$ uv run ./solve.py input.txt
Part 1: secret
Part 2: secret
```