/advent_of_code24

solutions for advent of code 2024 (solved in go)

Primary LanguageGoMIT LicenseMIT

advent_of_code24

solutions for advent of code 2024 (solved in go)

Structure

├── 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.