Remove print

This commit is contained in:
Yangshun Tay
2018-02-24 17:36:26 -08:00
parent 186d6880db
commit f439466a58

View File

@@ -28,7 +28,6 @@ def graph_dfs_diagonals_and_boundary_wrap(matrix):
def dfs(i, j):
if (i, j) in visited:
return
print(matrix[i][j])
visited.add((i, j))
for direction in directions:
# Change 2: No more boundary, use modulo to allow traversal that exceed boundaries to wrap around.