mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-01-15 14:21:06 +00:00
19 lines
254 B
Markdown
19 lines
254 B
Markdown
# Advent of code
|
|
|
|
My solutions to the [advent of code](https://adventofcode.com/) challenges, written in python
|
|
|
|
## How to run
|
|
|
|
### Run a single day
|
|
|
|
```shell
|
|
$ python3 run.py <year> <day>
|
|
```
|
|
|
|
### Run a whole year
|
|
|
|
```shell
|
|
$ python3 run.py <year>
|
|
```
|
|
|