Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 750 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 750 Bytes

Advent of Code 2022 in Python

Advent of Code

To run the files:

python days/day1.py

To run the tests:

python -m pytest tests/day1_test.py

Troubleshooting

When getting error for relative imports like:

ModuleNotFoundError or ImportNotFound

Use this article How to Fix ModuleNotFoundError and ImportError

Specifically:

export PYTHONPATH="${PYTHONPATH}:/Users/laura.zaharia/Personal/AoC-2022-Python"

Some useful references: