editing doctest

This commit is contained in:
Ajmera, Mahita SI/HZR-IDSA 2024-10-17 10:42:14 +02:00
parent 4a6fbdecd2
commit e1ad21cd6a

View File

@ -49,13 +49,13 @@ def floyd_warshall(graph, v):
... [float('inf'), float('inf'), 0] ... [float('inf'), float('inf'), 0]
... ] ... ]
>>> dist, _ = floyd_warshall(graph, num_vertices) >>> dist, _ = floyd_warshall(graph, num_vertices)
>>> dist == expected
The shortest path matrix using Floyd Warshall algorithm The shortest path matrix using Floyd Warshall algorithm
0 2 INF 0 2 INF
1 0 INF 1 0 INF
INF INF 0 INF INF 0
>>> dist == expected
True True
""" """