Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.04 KB

File metadata and controls

36 lines (24 loc) · 1.04 KB

Advent of Code 2021

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.

Summary

Completed Days Completion Primary Language Format Naming Convention
4 4/25 Python standalone scripts dayN.py + dayN.txt

Completed Days

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

Structure

  • Each completed day uses a lowercase dayN.py script paired with a matching dayN.txt input file.

Running The Solutions

Run a script from inside the 2021 directory so its relative input path resolves correctly.

cd 2021
python3 day1.py

Notes

  • 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.