summaryrefslogtreecommitdiffstats
path: root/16.py
diff options
context:
space:
mode:
Diffstat (limited to '16.py')
-rw-r--r--16.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/16.py b/16.py
index 779b8aa..a8819f3 100644
--- a/16.py
+++ b/16.py
@@ -48,7 +48,8 @@ def recurse(open_valves=frozenset(), current='AA', flow=0, time_left=30):
flow + cflow * cost, time_left - cost)
best = max(best, new)
if current not in open_valves and time_left > 0 and cnode.flow > 0:
- best = max(best, recurse(open_valves | {current}, current, flow + cflow, time_left - 1))
+ best = max(best, recurse(open_valves | {current}, current,
+ flow + cflow, time_left - 1))
return best
print(recurse())