Categorygithub.com/simonwardjones/advent-of-code-2024
repository
0.0.0-20250102164604-da420f8e85bb
Repository: https://github.com/simonwardjones/advent-of-code-2024.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

advent-of-code-2024

Solutions for the 2024 advent of code.

Golang

At least for the first few days I am going to be writing the solutions in go. To initial the module I ran:

go mod init github.com/simonwardjones/advent-of-code-2024

Running the code

To run day 1 for example:

go run cmd/day01/main.go

To run the tests for day 1:

go test ./day01/

To build the code into the bin folder run:

go build -o bin/day1 cmd/day1/main.go