aboutsummaryrefslogtreecommitdiff
path: root/2020/14/puzzle-2.py
diff options
context:
space:
mode:
Diffstat (limited to '2020/14/puzzle-2.py')
-rwxr-xr-x2020/14/puzzle-2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/2020/14/puzzle-2.py b/2020/14/puzzle-2.py
index 726da0a..d346622 100755
--- a/2020/14/puzzle-2.py
+++ b/2020/14/puzzle-2.py
@@ -27,7 +27,7 @@ def bitmask(mask: str, num: int) -> tuple[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 = ""