Advent of Code 2022 Day 8: Treetop Tree House Solutions
It's day 8 of the AoC and here is my solution to the Treetop Tree House puzzle:
from functools import reduce
with open('input', 'r') as file:
input = list(map(lambda x: list(map(lambda y: int(y), list(x))), file.read().split('\n')))
MAX_X = len(input[0]