Advent of Code Day 8 - Treetop Tree House
Question The elves come to you with a problem, they want to build a tree house but they want to make sure that they have enough cover. We are given a map of the forest with a number representing each tree’s height. 1 2 3 4 5 30373 25512 65332 33549 35390 Parsing We care about the location of each tree and its height. All of the above is available to us if we parse our map into a matrix [][]int...