Advent of Code 2022 Day 5: Supply Stacks Solutions
It's day 5 of the AoC and here is my solution to the Supply Stacks puzzle:
import re
from copy import deepcopy
with open('input', 'r') as file:
input = list(file.read().split('\n\n'))
def prepare(input):
copy = deepcopy(input)
rows = copy[0].split('\n')
positions = rows[