From c70bcd86da06c40b5b09f2e97bbd1ce092217a33 Mon Sep 17 00:00:00 2001 From: Stefan Harmuth Date: Fri, 3 Dec 2021 06:57:21 +0100 Subject: [PATCH] day03 --- day03.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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