Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b7d8a03

Browse files
author
Ajmera, Mahita SI/HZR-IDSA
committedOct 17, 2024·
removing tabs from print statement
1 parent 84c97da commit b7d8a03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎graphs/graphs_floyd_warshall.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ def _print_dist(dist, v):
1010
for i in range(v):
1111
for j in range(v):
1212
if dist[i][j] != float("inf"):
13-
print(int(dist[i][j]), end="\t")
13+
print(int(dist[i][j]), end=" ")
1414
else:
15-
print("INF", end="\t")
15+
print("INF", end=" ")
1616
print()
1717

1818

0 commit comments

Comments
 (0)
Please sign in to comment.