Advent of Code: Year 2020, Day 13
Today’s challenge was… interesting, to say the least. It may look short and sweet, but it is fairly complex and requires a fair bit of number theory for part...
Today’s challenge was… interesting, to say the least. It may look short and sweet, but it is fairly complex and requires a fair bit of number theory for part...
Today was the first day where I didn’t use the same code for parts one and two – they were just too different! Other than that, this is a classic recursive s...
I am giving myself half credit for today; the solution I came up with is in Raku, but it is an iterative solution. Additionally, this solution is slow. In fa...
Part two today almost forced me to use an iterative approach that would require a mutable array. However, I stumbled on a great feature of Raku that let me d...
Today we have a classic sliding window problem. But, instead of the traditional iterative approach, we take a recursive approach.