advent-of-code/README.md
Tyrel Souza 042b10fe8d
readme
2022-12-09 11:46:30 -05:00

27 lines
612 B
Markdown

Advent of Code
to run any day:
- make a virualenv `python3 -m venv env`
- source it `souce env/bin/activate`
- install deps `pip install -r requirements.txt`
- cd to proper dir `cd 2022/python/`
- run the day `python3 day01.py`
- 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