advent-of-code/README.md
2023-12-02 23:20:53 -05:00

40 lines
556 B
Markdown

Advent of Code
# Running
## Setup
- `just setup`
## Create Day
- `just new`
## Running
Run the sample:
- `just sample`
Run Full:
- `just full`
Watching:
- `just wfull`
- `just wsample`
---
# Pre 2023
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])