Advent of Code 2021 =================== This year I'm attempting at least some of the earlier problems in C as well as Python (need the dynamic language to get that super speedy private leaderboard time!). Should get interesting once I need hashmaps :) If you want to discuss any of my solutions, shoot me an email at my public inbox: [~akarle/public-inbox@lists.sr.ht][mail] [mail]: mailto:~akarle/public-inbox@lists.sr.ht Running ------- The GNU Makefile builds the C code and runs both C and Python solutions via the `build` and `run` targets respectively. `run` takes an optional parameter `DAY` that can limit the solutions run: make run # runs all make DAY=01 run # runs day 1