diff --git a/day1/part1.py b/day1/part1.py index 973a932..047885e 100644 --- a/day1/part1.py +++ b/day1/part1.py @@ -1,7 +1,7 @@ first_list = [] second_list = [] result = 0 -with open("input.txt", "r") as file_input: +with open("part1_input.txt", "r") as file_input: for row in file_input: first_column, second_column = map(int, row.split(" ")) first_list.append(first_column) diff --git a/day2/part1.py b/day2/part1.py index 8bf9bb1..e86c18c 100644 --- a/day2/part1.py +++ b/day2/part1.py @@ -1,5 +1,5 @@ safe_reports = 0 -with open("input.txt", "r") as file_input: +with open("part1_input.txt", "r") as file_input: for row in file_input: report = list(map(int, row.split(" ")))