From 22afdfb126f50e9c380761b17580b63dce2b6ff0 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 8 Dec 2025 03:19:25 +0000 Subject: [PATCH] remove extra comments --- day_07/1.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/day_07/1.rb b/day_07/1.rb index 7006f4e..079d668 100755 --- a/day_07/1.rb +++ b/day_07/1.rb @@ -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)