@ -1,6 +1,5 @@
import os
inputfile = os.path.join(os.path.dirname(__file__), "input/day01_input")
@ -2,7 +2,6 @@ import os
from . import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day02_input")
@ -1,7 +1,6 @@
import sys
inputfile = os.path.join(os.path.dirname(__file__), "input/day03_input")
inputfile = os.path.join(os.path.dirname(__file__), "input/day05_input")
@ -3,7 +3,6 @@ import os
inputfile = os.path.join(os.path.dirname(__file__), "input/day07_input")
imgsize = 25 * 6
@ -1,9 +1,7 @@
import itertools
from .comp import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day09_input")
@ -1,8 +1,7 @@
from math import atan2, sqrt
from math import atan2
from typing import Tuple
inputfile = os.path.join(os.path.dirname(__file__), "input/day10_input")