removing tabs from print statement

This commit is contained in:
Ajmera, Mahita SI/HZR-IDSA 2024-10-17 11:08:16 +02:00
parent 84c97dae33
commit b7d8a03e6f

View File

@ -10,9 +10,9 @@ def _print_dist(dist, v):
for i in range(v):
for j in range(v):
if dist[i][j] != float("inf"):
print(int(dist[i][j]), end="\t")
print(int(dist[i][j]), end=" ")
else:
print("INF", end="\t")
print("INF", end=" ")
print()