Advent of Code 2023: Day Eight

from blog Robb Knight • Posts • RSS Feed, | ↗ original
We've navigating a network today for...reasons. Part One The sample input looks like so: RLAAA = (BBB, CCC)BBB = (DDD, EEE)CCC = (ZZZ, GGG)DDD = (DDD, DDD)EEE = (EEE, EEE)GGG = (GGG, GGG)ZZZ = (ZZZ, ZZZ) The first line is a list of instructions (left or right) and the rest is the nodes with their left and right defined. So if we go right from...