about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-11-24 12:26:45 +0530
committerAndinus <andinus@nand.sh>2021-11-24 12:26:45 +0530
commit0a8410f21c5d40e29d4257f7f43cd6ca46a2db20 (patch)
treea4cd93568783abc347b2d393ef156af3e4b0ca05
parent0a896690955ed94f3e4ee5d18e18ec470a46e4b3 (diff)
downloadfornax-0a8410f21c5d40e29d4257f7f43cd6ca46a2db20.tar.gz
Remove commented block
-rw-r--r--algorithms/java/DFS.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/algorithms/java/DFS.java b/algorithms/java/DFS.java
index d8fe7d1..dc89b49 100644
--- a/algorithms/java/DFS.java
+++ b/algorithms/java/DFS.java
@@ -80,14 +80,6 @@ public class DFS {
             { '.', '.', '.', '.', '.', '#', '.', '#', '.', '.', '.', '.', '.', },
             { '.', '.', '.', '.', '.', '.', '.', '#', '.', '.', '.', '.', '.', },
             { '.', '.', '.', '.', '.', '#', '.', '.', '.', '.', '.', '.', '.', },
-
-            // {'.', '#', '.', '#', '.', '.', '#', '.'},
-            // {'.', '.', '.', '.', '.', '.', '.', '.'},
-            // {'.', '#', '.', '.', '#', '.', '.', '$'},
-            // {'.', '.', '.', '#', '.', '#', '.', '.'},
-            // {'.', '.', '.', '.', '.', '.', '.', '#'},
-            // {'.', '#', '#', '.', '.', '.', '#', '.'},
-            // {'.', '.', '.', '.', '.', '.', '.', '.'},
         };
 
         boolean[][] visited = new boolean[maze.length][maze[0].length];