Advent of Code
Advent of Code 2020 – Day 3
Day 3 was the first that really presented some problems, and I admit, I did a “cheaty trick” to solve it. Part 1 and 2 use the same code as well, because Part 2 was a simple variation of Part 1. For Day 3, you get a “map” of a forest with Trees. You have to count how many trees will need to be avoided for a particular path through the forest. The path is …
Advent of Code 2020 – Day 2
Day two is a little more complicated than Day 1 was. Today’s challenge is to take a blob of passwords, and verify if they are acceptable or not, per the “company standard” at the time of the creation of each password. For example: 1-3 a: abcde 1-3 b: cdefg 2-9 c: ccccccccc For part 1, on line 1, the letter a should appear at least 1 time and at most 3 times. For line 2, …
Advent of Code 2020 – Day 1
So, I want to say up front, I don’t know if I will finish this, but I plan to try. Also, while I intend to publish these posts on the respective day of each challenge, I may not actually DO the challenge day of. That is to say, some of these, probably most of these, will be back dated. Advent of Code is a little 25 day advent calendar of code based challenges. I heard …