This journaling will be mostly for myself, but I'm posting it to GitHub for posterity. This will be my 4th year attempting to do the Advent of Code. I'm hoping to write down my thoughts as I tackle each challenge. This year, the theme will be Go. I've used Ruby, Elixir, and Rust in the past, so this year I'll be getting in reps with a new-to-me language.
With Ruby in 2019, I would write the code in different folders each day. Since it's a scripting
language, it was easy enough to just execute each program on its own. Last year, Rust required
more setting up just to run the code, so I decided to follow the same pattern this year, and run
a single command with an argument to specify which day's results I want to see. Running a program
requires running the "runner" program, but with different arguments. e.g. calling go run . 01a
from
the runner
directory will run the code for the first part of day 1, go run . 02b
will run the code
for the second part of day 2, etc.
- 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
- Day 19
- Day 20
- Day 21
- Day 22
- Day 23
- Day 24
- Day 25