Go to file
Tyrel Souza 84a6d0c599
day10 part 1
2023-12-11 22:54:41 -05:00
2015 try 2015 again 2022-12-18 23:55:45 -05:00
2021 animation library 2022-12-09 18:03:06 -05:00
2022 clean up 2022-12-19 01:10:23 -05:00
2023 day10 part 1 2023-12-11 22:54:41 -05:00
.gitignore day14 make it go fasterrr 2022-12-14 14:00:11 -05:00
README.md update readme 2023-12-02 23:20:53 -05:00
day10.txt day10 part 1 2023-12-11 22:54:41 -05:00
requirements.txt day 14 part 1 and 2 2022-12-14 02:38:19 -05:00

README.md

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])