Expand description
Advent of Code 2015 Day 2: https://adventofcode.com/2015/day/2
The solutions today are simple and just involve parsing numbers and comparing them amongst each other. Originally this worked with some ugly if/else statments and array sorting, but after solving the puzzle I decided to switch it to use a min heap which I think results in a much cleaner and easier to understand/reason about solution.
Functions§
- The solution for the day two challenge.