d05 part one - not done

This commit is contained in:
Arthur 2023-12-05 10:46:47 +01:00
parent f4741b6158
commit d6da080a43
1 changed files with 21 additions and 0 deletions

21
d05/run1.py Normal file
View File

@ -0,0 +1,21 @@
import sys
lmap=100
alma = [ele for ele in sys.stdin.read().splitlines() if ele != ""]
planted = [int(ele) for ele in alma[0].replace("seeds: ", "").split(" ")]
source = list(range(0, lmap))
destin = list(range(0, lmap))
for d in alma:
if "map" not in d and "seeds:" not in d:
r = [int(i) for i in d.split(" ")]
for n in range(0, r[2]):
destin[r[1] + n] = source[r[0] + n]
else:
source = list(destin)
destin = list(range(0, lmap))
for i in planted:
print(destin[i])