This folder contains my 2021 Advent of Code work in Python. Each day is represented by a standalone script and a matching text input file.
| Completed Days | Completion | Primary Language | Format | Naming Convention |
|---|---|---|---|---|
| 4 | 4/25 | Python | standalone scripts | dayN.py + dayN.txt |
| Day | Puzzle | Files |
|---|---|---|
| 1 | Sonar Sweep | day1.py, day1.txt |
| 2 | Dive! | day2.py, day2.txt |
| 3 | Binary Diagnostic | day3.py, day3.txt |
| 4 | Giant Squid | day4.py, day4.txt |
- Each completed day uses a lowercase
dayN.pyscript paired with a matchingdayN.txtinput file.
Run a script from inside the 2021 directory so its relative input path resolves correctly.
cd 2021
python3 day1.py- The scripts are straightforward, day-specific implementations rather than a shared framework.
- Naming and structure are intentionally minimal to match the one-file-per-day workflow.