We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2163204 commit 67cb97dCopy full SHA for 67cb97d
DataStructures/Graphs/FloydWarshall.java
@@ -14,7 +14,7 @@ public FloydWarshall(int numberofvertices) {
14
[numberofvertices
15
+ 1]; // stores the value of distance from all the possible path form the source
16
// vertex to destination vertex
17
- Arrays.fill(DistanceMatrix, 0);
+ // The matrix is initialized with 0's by default
18
this.numberofvertices = numberofvertices;
19
}
20
0 commit comments