mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
11 lines
252 B
Markdown
11 lines
252 B
Markdown
# 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
|
|
```
|