Skip to content

Commit

Permalink
Merge pull request #247 from Stegallo/2024
Browse files Browse the repository at this point in the history
day1
  • Loading branch information
Stegallo authored Dec 1, 2024
2 parents 2771003 + 393c768 commit 6c592ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions y_2024/day1.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ def __init__(self, test=0):
super().__init__(__name__, test)

def _preprocess_input(self):
# self.__input_data = [[int(i) for i in chunk] for chunk in self._input_data]
# print(f"{self._input_data=}")
parsed_input = [Row(i) for i in self._input_data[0]]
self.__first_list = [int(i.processed[0]) for i in parsed_input]
self.__second_list = [int(i.processed[1]) for i in parsed_input]
Expand Down

0 comments on commit 6c592ff

Please sign in to comment.