repository
0.0.0-20241225084617-23c29a31a0a5
Repository: https://github.com/mbe81/advent-of-code-2024.git
Documentation: pkg.go.dev
# README
Advent of Code 2024
Repository to store my solutions (in Go) for the Advent of Code puzzles for 2024.
Use the following command to run the puzzles:
go run ./cmd/aoc -day=1 -part=1 -input=input.txt
The part
flag and input
flag are optional:
- If the
part
flag is omitted, both part 1 and 2 will run - If the
input
flag is omitted, the fileinput.txt
will be used.
Happy puzzling!