cleaning up
This commit is contained in:
parent
b7f6aab162
commit
162fc8cf2f
@ -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)
|
||||
|
||||
@ -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(" ")))
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user