aboutsummaryrefslogtreecommitdiff
path: root/2020/14/puzzle-1.py
diff options
context:
space:
mode:
Diffstat (limited to '2020/14/puzzle-1.py')
-rwxr-xr-x2020/14/puzzle-1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2020/14/puzzle-1.py b/2020/14/puzzle-1.py
index 81f9136..02e5d38 100755
--- a/2020/14/puzzle-1.py
+++ b/2020/14/puzzle-1.py
@@ -19,7 +19,7 @@ def bitmask(mask: str, num: int) -> int:
def main() -> None:
with open("input", "r", encoding="utf-8") as f:
- lines = f.read().splitlines()
+ lines = f.readlines()
mem: dict[str, int] = {}
mask = ""