Advent of Code 2021 Day 16

Author

Nathan Moore

Write the Puzzle explanation here

with open('data-2021-16.txt', 'r') as f:
    inp = f.read().splitlines()

Maybe write an explanation of the solution approach here

# here's another python cell for good luck

Paste part two here