mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-12-18 09:10:16 +00:00
fixing doctests
This commit is contained in:
parent
be16a1ef9b
commit
05e81d5724
|
@ -48,9 +48,9 @@ def floyd_warshall(graph, v):
|
||||||
>>> dist, _ = floyd_warshall(graph, 3)
|
>>> dist, _ = floyd_warshall(graph, 3)
|
||||||
The shortest path matrix using Floyd Warshall algorithm
|
The shortest path matrix using Floyd Warshall algorithm
|
||||||
<BLANKLINE>
|
<BLANKLINE>
|
||||||
0 3 INF
|
0 3 INF
|
||||||
2 0 INF
|
2 0 INF
|
||||||
9 7 0
|
9 7 0
|
||||||
>>> dist == expected
|
>>> dist == expected
|
||||||
True
|
True
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user