Skip to content

Commit f439466

Browse files
committed
Remove print
1 parent 186d688 commit f439466

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

utilities/python/graph_dfs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def graph_dfs_diagonals_and_boundary_wrap(matrix):
2828
def dfs(i, j):
2929
if (i, j) in visited:
3030
return
31-
print(matrix[i][j])
3231
visited.add((i, j))
3332
for direction in directions:
3433
# Change 2: No more boundary, use modulo to allow traversal that exceed boundaries to wrap around.

0 commit comments

Comments
 (0)