/adventofcode-python

https://adventofcode.com solutions in python

Primary LanguagePython

Advent Of Code solutions in Python

2021 Results

Day Part 1 Part 2
Day 1
Day 2
Day 3
Day 4
Day 5
Day 6
Day 7
Day 8
Day 9
Day 10
Day 11
Day 12
Day 13
Day 14
Day 15
Day 16
Day 17
Day 18
Day 20
Day 21
Day 22

Setup

pip install poetry
python -m poetry install
python -m poetry shell

Usage

with my inputs

python aoc/cli.py --year 2021 5

with inputs from stdin

cat input.txt | python aoc/cli.py --year 2021 5

with custom input path

python aoc/cli.py --year 2021 --input-path /path/to/file.txt 5