Advent of Code 2023 Day 25

Author

Nathan Moore

— Day 25: Snowverload —

Find the three wires you need to disconnect in order to divide the components into two separate groups. What do you get if you multiply the sizes of these two groups together?

with open('data-2023-25.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