From d3f48068b1503225c60df35ca0f8565e964e7732 Mon Sep 17 00:00:00 2001 From: Mudith Daga Date: Tue, 19 Jul 2022 17:05:42 +0530 Subject: [PATCH] Update 3.py --- 2020/3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020/3.py b/2020/3.py index 2cab356..897d91a 100644 --- a/2020/3.py +++ b/2020/3.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 = "" # Path of the input.txt provided from Advent Calendar +location = "" # Path of the input.txt provided from Advent Calendar (Replace '\' → '\\') try: with open(location,'r') as f: data = f.readlines()