
Advent of Code 2022 Day 11: Monkey in the Middle Solutions
It's day 11 of the AoC and here is my solution to the Monkey in the Middle puzzle:
from math import floor, lcm
from copy import deepcopy
from input import input
def inspect(item, divisor, operation):
operation, value = operation
value = int(value) if value != "old" else item
inspected_item = 0