aboutsummaryrefslogtreecommitdiff
path: root/2020/13/puzzle-2.py
diff options
context:
space:
mode:
Diffstat (limited to '2020/13/puzzle-2.py')
-rwxr-xr-x2020/13/puzzle-2.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/2020/13/puzzle-2.py b/2020/13/puzzle-2.py
index 3965488..cf16c22 100755
--- a/2020/13/puzzle-2.py
+++ b/2020/13/puzzle-2.py
@@ -32,7 +32,6 @@ def main() -> None:
buses = tuple(filter(lambda x: x != "x", ids))
modres = tuple(x if (x := bus - ids.index(bus)) != bus else 0 for bus in buses)
-
print(chinese_remainder(buses, modres))