diff --git a/day03.py b/day03.py index b0973bb..8001cf3 100644 --- a/day03.py +++ b/day03.py @@ -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