aboutsummaryrefslogtreecommitdiff
path: root/2022/05/solve.py
diff options
context:
space:
mode:
authorMarvin Borner2022-12-05 09:04:45 +0100
committerMarvin Borner2022-12-05 09:04:45 +0100
commita36c6fe4b3fe93c936d40dcca41f5e8cbf4987d7 (patch)
tree915d2a1ec31b9ff01f61879bf93037ff3642a590 /2022/05/solve.py
parentd5f822bcad063435ac1a48f0a0dae41a9b155d73 (diff)
golf? a bit
Diffstat (limited to '2022/05/solve.py')
-rw-r--r--2022/05/solve.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/2022/05/solve.py b/2022/05/solve.py
index 8997d4e..fb996bc 100644
--- a/2022/05/solve.py
+++ b/2022/05/solve.py
@@ -18,10 +18,10 @@ def solve(mover_version):
stacks[i // 4].insert(0, cols[i])
i += 4
else:
- proc = line.replace("move ", "").replace("from ", "").replace("to ", "").replace("target ", "").split(" ")
- what = int(proc[0])
- source = int(proc[1]) - 1
- target = int(proc[2]) - 1
+ proc = line.split(" ")
+ what = int(proc[1])
+ source = int(proc[3]) - 1
+ target = int(proc[5]) - 1
crates = stacks[source][-what:]
if mover_version == 9000: