d05 part one - not done
This commit is contained in:
parent
f4741b6158
commit
d6da080a43
|
@ -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])
|
Loading…
Reference in New Issue