fixing doctests

This commit is contained in:
Ajmera, Mahita SI/HZR-IDSA 2024-10-17 12:02:19 +02:00
parent be16a1ef9b
commit 05e81d5724

View File

@ -48,9 +48,9 @@ def floyd_warshall(graph, v):
>>> dist, _ = floyd_warshall(graph, 3)
The shortest path matrix using Floyd Warshall algorithm
<BLANKLINE>
0 3 INF
2 0 INF
9 7 0
0 3 INF
2 0 INF
9 7 0
>>> dist == expected
True
"""