mirror of
https://github.com/onyx-and-iris/aoc2025.git
synced 2025-12-08 19:57:48 +00:00
remove extra comments
This commit is contained in:
parent
3811f7b26f
commit
22afdfb126
@ -27,9 +27,9 @@ class Main
|
||||
end
|
||||
|
||||
# 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
|
||||
total = dfs(step_east, graph, total, visited) # east
|
||||
total = dfs(step_east, graph, total, visited)
|
||||
return total
|
||||
elsif graph.at(next_point) == "."
|
||||
visited.add(next_point)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user