advent-of-code/README.md

27 lines
612 B
Markdown
Raw Normal View History

2022-12-09 16:46:30 +00:00
Advent of Code
2022-12-09 16:43:00 +00:00
to run any day:
- make a virualenv `python3 -m venv env`
- source it `souce env/bin/activate`
- install deps `pip install -r requirements.txt`
2022-12-09 16:46:30 +00:00
- cd to proper dir `cd 2022/python/`
- run the day `python3 day01.py`
2022-12-09 16:43:00 +00:00
- to run sample code pass `--sample` as the argument. `python day01.py --sample`, (nothing special just checks sys.argv[-1])
python day01.py --sample
python day02.py --sample
python day03.py --sample
python day04.py --sample
python day05.py --sample
python day06.py --sample
python day07.py --sample
python day08.py --sample
python day09.py --sample
python day10.py --sample