use real input

This commit is contained in:
a 2020-12-11 20:02:57 -06:00
parent fc8320bdd0
commit 061d9cab96

View file

@ -1,5 +1,5 @@
def read_file(): def read_file():
with open("input_sample.txt","r") as f: with open("input.txt","r") as f:
seed = f.read().split('\n') seed = f.read().split('\n')
# pad with floor to prevent out-of-bounds checks # pad with floor to prevent out-of-bounds checks
seats = [] seats = []