aboutsummaryrefslogtreecommitdiff
path: root/2020/13/puzzle-1.py
diff options
context:
space:
mode:
Diffstat (limited to '2020/13/puzzle-1.py')
-rwxr-xr-x2020/13/puzzle-1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2020/13/puzzle-1.py b/2020/13/puzzle-1.py
index 7b21f96..ef83817 100755
--- a/2020/13/puzzle-1.py
+++ b/2020/13/puzzle-1.py
@@ -2,7 +2,7 @@
def main() -> None:
- with open("input", "r") as f:
+ with open("input", "r", encoding="utf-8") as f:
time = int(f.readline())
ids = list(map(int, f.readline().replace(",x", "").split(",")))