solutions for advent of code 2024 (solved in go)
├── day1
│ ├── day1.go
│ └── day1_test.go
├── day2
│ ├── day2.go
│ └── day2_test.go
├── go.mod
└── main.go
Each days solutions has its own package, with code for solution and test cases with the provided example and solutions.