editing doctest

This commit is contained in:
Ajmera, Mahita SI/HZR-IDSA 2024-10-17 10:57:46 +02:00
parent 199db30829
commit d486240774

View File

@ -46,8 +46,9 @@ def floyd_warshall(graph, v):
... [float('inf'), float('inf'), 0]
... ]
>>> dist, _ = floyd_warshall(graph, num_vertices)
<BLANKLINE>
The shortest path matrix using Floyd Warshall algorithm
<BLANKLINE>
0 2 INF
1 0 INF
INF INF 0