Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 648 Bytes

File metadata and controls

21 lines (18 loc) · 648 Bytes

🎄 Advent of Code 🎄

Go Report Card

Solutions to Advent of Code puzzles.

Setup

Set your AoC session cookie in the AOC_SESSION_TOKEN env var.

Running the solutions

# Create skeleton for a new day. Defaults to current day/year
make skeleton
# Run tests for the current day
make test
# Run current day
make run

All commands support DAY and YEAR variables to run solutions for a specific day and year. For example:

DAY=01 YEAR=2024 make run