Expand description
Advent of Code 2015 Day 9: https://adventofcode.com/2015/day/9
This challenge turned out to be pretty easy. The list of inputs is small so we don’t need to worry about building any graphs and then trying to find the shortest path or anything. We can just compute all of the possible trips and their distances and then get the shortest/longest.
Functions§
- The solution for the day nine challenge.