diff --git a/day01.py b/day01.py index e705b8a..c6702e8 100644 --- a/day01.py +++ b/day01.py @@ -15,7 +15,7 @@ class Day(AOCDay): def count(self, step: int = 1) -> int: count = 0 - depths = self.getInputListAsType(int) + depths = self.getInput(int) for x in range(step, len(depths)): if depths[x] > depths[x - step]: count += 1