diff --git a/2020/2.py b/2020/2.py index c766a50..b629680 100644 --- a/2020/2.py +++ b/2020/2.py @@ -1,7 +1,7 @@ # If you already have the data as an input use: data = [] # Your Advent Calendar Input # However, it is highly recommended to run this: -location = "C:\\Users\\dagam\\Downloads\\input.txt" # Path of the input.txt provided from Advent Calendar (Replace '\' → '\\') +location = "" # Path of the input.txt provided from Advent Calendar (Replace '\' → '\\') try: with open(location,'r') as f: data = f.readlines()