Skip to content

Commit 4d34197

Browse files
author
Hamid Gasmi
committed
Issue 87 (Finding an Exit from a Maze): solved with a Graph BFS exploration
1 parent 082af52 commit 4d34197

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

3-graph-algorithms/1_graph_decomposition/reachability.py

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def reach(adj, n, u, v, solution):
6969
return aMaze.explore_bfs(u, v, q)
7070
elif solution == 3:
7171
return 0
72+
7273
else:
7374
return 0
7475

0 commit comments

Comments
 (0)