mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-22 06:28:11 +01:00
Solve day 9 part 2
This commit is contained in:
parent
aee6beea29
commit
ec29b13c5f
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ def main():
|
|||
original_program = list(map(int, input_file.read().split(",")))
|
||||
computer = Computer(original_program)
|
||||
try:
|
||||
result = computer.compute([1])
|
||||
result = computer.compute([2])
|
||||
print(result)
|
||||
except StopIteration:
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue