As a warmup for this year’s Advent of Code, I’m re-reading and posting my solutions to last year’s challenges. You can read or run today’s solution by following the link above.

Day 2 involved playing Rock Paper Scissors following a strategy guide. I solved part one by building a simple look-up table encoding the provided score values. Solving part two just required building a second lookup table to key into that first table.