mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-08-23 16:01:59 +00:00
29 lines
357 B
Markdown
29 lines
357 B
Markdown
# Advent of code
|
|
|
|
My solutions to the [advent of code](https://adventofcode.com/) challenges, written in python
|
|
|
|
## 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
|
|
$ aoc <year> <day>
|
|
```
|
|
|
|
### Run a whole year
|
|
|
|
```shell
|
|
$ aoc <year>
|
|
```
|
|
|