I love challenges and one thing I didn't mention during the interview is that I love solving coding puzzles. One of my favorite recent descoveries is the Advent of Code 2022 and I've started to solve the challenges in JavaScript, but decided to solve the latest challenge (Day 5) in Python.
- Install dependencies
$ poetry install
- Start a poetry shell to load the virtual environment
$ poetry shell
- Execute the solution file.
$ python src/solutions/day5.py
orcd src/solutions; python day5.py