mirror of
https://github.com/onyx-and-iris/aoc2025.git
synced 2026-04-09 03:23:37 +00:00
remove extra comments
This commit is contained in:
@@ -27,9 +27,9 @@ class Main
|
|||||||
end
|
end
|
||||||
|
|
||||||
# step west then dfs south
|
# step west then dfs south
|
||||||
total = dfs(step_west, graph, total, visited) # west
|
total = dfs(step_west, graph, total, visited)
|
||||||
# step east then dfs south
|
# step east then dfs south
|
||||||
total = dfs(step_east, graph, total, visited) # east
|
total = dfs(step_east, graph, total, visited)
|
||||||
return total
|
return total
|
||||||
elsif graph.at(next_point) == "."
|
elsif graph.at(next_point) == "."
|
||||||
visited.add(next_point)
|
visited.add(next_point)
|
||||||
|
|||||||
Reference in New Issue
Block a user