This repository contains solutions for Advent of Code implemented in Go.
Most of the solutions are quick-and-dirty implementations so expect shortcuts and don't expect optimized, clean or idiomatic code.
cmd/
: Day-specific solutions.internal/utils/
: Shared utility functions.input/
: Puzzle inputs.
- Place the input for a specific day in the
input/
folder (e.g.,input/day01.txt
). - Run the solution for that day, e.g.:
or
go run ./cmd/day01
just solve 01