This project will house my approaches to the 2022 Advent of Code Challenges.
I used pyenv to manage my Python version locally. This code was written and executed in Python 3.11.0, as this was the Python latest version available on pyenv 2.3.6.
# Ensure requirements are up to date
pip install --upgrade pip setuptools wheel
pip install --upgrade -r requirements.txt
# Format Python code
isort . & black .
# Run the Python linter
flake8