with open('data-2023-25.txt', 'r') as f:
inp = f.read().splitlines()Advent of Code 2023 Day 25
— 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?
Maybe write an explanation of the solution approach here
# here's another python cell for good luckPaste part two here