Advent of Code Day #2

In day 2 you were given a set of rules to be parsed first. The looked like this: 1-3 a: abcde 1-3 b: cdefg 2-9 c: ccccccccc Each line contains two numbers, a character and a password Part 1 In part 1 you have to check if the given character appears at least and at most times given by the numbers. Each password that matches this behavior is considered valid....

December 2, 2020 路 1 min 路 95 words 路 Robert

Advent of Code Day #1

First day was fairly simple. You need to find the two-pair combination (part 1) that sums up to 2020 and the three-pair combination (part 2). Then simply multiply each of the numbers within the combination. The result is the solution for the puzzle. Unfortunately due to an outage day 1 will not result in any points on the leaderboards.

December 1, 2020 路 1 min 路 59 words 路 Robert