mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-08-24 00:11:57 +00:00
2019 day 9
This commit is contained in:
20
2019/day9/day9.py
Normal file
20
2019/day9/day9.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# TODO replace PYTHONPATH hack with a proper solution, like making intcode an
|
||||
# installed module https://stackoverflow.com/a/50194143
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
sys.path.append(str(Path(__file__).absolute().parent.parent / "intcode"))
|
||||
|
||||
from intcode import interpret_intcode, Interpreter
|
||||
|
||||
|
||||
def main(inp):
|
||||
mem = list(map(int, inp.readline().rstrip().split(",")))
|
||||
print("Part 1: ", interpret_intcode(mem[::], stdin=[1]).stdout[0])
|
||||
print("Part 2: ", interpret_intcode(mem[::], stdin=[2]).stdout[0])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import fileinput
|
||||
main(fileinput.input())
|
||||
|
Reference in New Issue
Block a user