From 162fc8cf2f871d9ddd5992d56cc3eb6c5cc1f542 Mon Sep 17 00:00:00 2001 From: Nicolas Green Date: Tue, 3 Dec 2024 11:22:52 -0500 Subject: [PATCH] cleaning up --- day1/part1.py | 2 +- day2/part1.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(" ")))