README.md (699B) [raw]
1 Advent of Code 2021 2 =================== 3 This year I'm attempting at least some of the earlier problems 4 in C as well as Python (need the dynamic language to get that 5 super speedy private leaderboard time!). 6 7 Should get interesting once I need hashmaps :) 8 9 If you want to discuss any of my solutions, shoot me an email 10 at my public inbox: [~akarle/public-inbox@lists.sr.ht][mail] 11 12 [mail]: mailto:~akarle/public-inbox@lists.sr.ht 13 14 Running 15 ------- 16 The GNU Makefile builds the C code and runs both C and Python 17 solutions via the `build` and `run` targets respectively. `run` 18 takes an optional parameter `DAY` that can limit the solutions 19 run: 20 21 make run # runs all 22 make DAY=01 run # runs day 1