Awesome
Advent of code 2023
<div align="center"><img src="./static/logo.svg" width="220" /> </div>
Here you can find my golang solutions for Advent Of Code 2023.
<!--- advent_readme_stars table --->2023 Results
Day | Part 1 | Part 2 |
---|---|---|
Day 1 | 🌟 | 🌟 |
Day 2 | 🌟 | 🌟 |
Day 3 | 🌟 | 🌟 |
Day 4 | 🌟 | 🌟 |
Day 5 | 🌟 | 🌟 |
Day 6 | 🌟 | 🌟 |
Day 7 | 🌟 | 🌟 |
Day 8 | 🌟 | 🌟 |
Day 9 | 🌟 | 🌟 |
Day 10 | 🌟 | 🌟 |
Day 11 | 🌟 | 🌟 |
Day 12 | 🌟 | 🌟 |
Day 13 | 🌟 | 🌟 |
Day 14 | 🌟 | 🌟 |
Day 15 | 🌟 | 🌟 |
Day 16 | 🌟 | 🌟 |
Day 17 | 🌟 | 🌟 |
Day 18 | 🌟 | 🌟 |
Codegen
days/day*
codegen is a slightly changed version of alexchao26 aoc repo.
Workflow
To generate skeleton for another day run:
$ make gen DAY=3
Then manually:
- Fill tests with example input and want values
- Fill input.txt with real data
- Code problem solution
Another commands:
$ make run DAY=03 PART=2
$ make test DAY=03