chore: create new project structure and aoc.py runner script

This commit is contained in:
2025-08-04 16:23:06 +02:00
parent f76375d835
commit e2964c6c36
91 changed files with 177 additions and 113 deletions

View File

@@ -4,15 +4,25 @@ My solutions to the [advent of code](https://adventofcode.com/) challenges, writ
## How to run
### Install project
Run `make install` or
Run from root directory (inside a virtualenv):
```shell
$ pip install -e .
```
### Run a single day
```shell
$ python3 run.py <year> <day>
$ aoc <year> <day>
```
### Run a whole year
```shell
$ python3 run.py <year>
$ aoc <year>
```