2019 day 16 and 17 wip

This commit is contained in:
2024-08-18 19:38:13 -04:00
parent ebf65905b4
commit e9f5542be8
3 changed files with 114 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ from lib import get_data, str_to_ints
class Amp:
def __init__(self, xs):
self.xs = list(xs)
self.xs += [0 for _ in range(1000)]
self.xs += [0 for _ in range(10000)]
self.i = 0
self.inputs = []
self.outputs = []