aboutsummaryrefslogtreecommitdiff
path: root/2020/14/puzzle-2.py
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-08 15:31:29 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-08 15:31:29 +0100
commit0a082f129f9438fbfaf315ca3220e62586c878cd (patch)
treef601e857ac27ebc5de16e0e6b8a576076decbc8a /2020/14/puzzle-2.py
parent9f0962135d694d680030b806ff33095318dd00c4 (diff)
Use the .readlines() method
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 = ""