This commit is contained in:
Stefan Harmuth 2021-12-03 06:57:21 +01:00
parent dde2715d2e
commit c70bcd86da

View File

@ -20,8 +20,8 @@ class Day(AOCDay):
return int(gamma, 2) * int(epsilon, 2)
def part2(self) -> Any:
report_ox = [a for a in self.getInput()]
report_co2 = [a for a in self.getInput()]
report_ox = self.getInput()
report_co2 = self.getInput()
for i in range(len(report_ox[0])):
count_ox = 0
count_co2 = 0