-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathday_05.py
50 lines (37 loc) · 1.28 KB
/
day_05.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from helper import get_input
import copy
inp = get_input(day=5, no_strip=True)
box_stack = [[] for _ in range(9)]
# Create Box Stack
for i in range(8):
row = inp[i].split(" ")
row_simplified = []
j = 0
while j < len(row):
if row[j] == "":
j += 4
row_simplified.append("")
else:
row_simplified.append(row[j][1])
j += 1
for i, box in enumerate(row_simplified):
if box:
box_stack[i].insert(0, box)
def part_1():
_box_stack = copy.deepcopy(box_stack)
for i in range(10, len(inp)):
_, num, _, source, _, dest = inp[i].split()
num, source, dest = [int(x) for x in [num, source, dest]]
for _ in range(num):
_box_stack[dest - 1].append(_box_stack[source - 1].pop())
return "".join([x[-1] for x in _box_stack])
def part_2():
_box_stack = copy.deepcopy(box_stack)
for i in range(10, len(inp)):
_, num, _, source, _, dest = inp[i].split()
num, source, dest = [int(x) for x in [num, source, dest]]
_box_stack[dest - 1].extend(_box_stack[source - 1][-num:])
_box_stack[source - 1] = _box_stack[source - 1][:-num]
return "".join([x[-1] for x in _box_stack])
print(f"D05P1: {part_1()}")
print(f"D05P2: {part_2()}")