Add input file reading to solution files

This commit is contained in:
Jake Pullen
2023-11-30 15:02:20 +00:00
parent a8258bcefc
commit e998cfdabb
26 changed files with 107 additions and 1 deletions
+4
View File
@@ -1,2 +1,6 @@
import os
with open('advent_of_code_2023\day_15\input.txt', 'r') as file:
input = file.read()
print(input)