remove extra comments

This commit is contained in:
onyx-and-iris 2025-12-08 03:19:25 +00:00
parent 3811f7b26f
commit 22afdfb126

View File

@ -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)