Fix day 12 solution
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-13 08:51:11 +01:00
parent 0842b5d196
commit 5995599d6d

View File

@@ -20,7 +20,7 @@ def process_node(node, available_edges, visited):
def process_node_twice(node, available_edges, visited, visited_twice):
paths = deque()
paths = []
if node == "end":
paths.append([node])
return paths