Content deleted Content added
Ecomaikgolf (talk | contribs) Pseudocode error? |
Ecomaikgolf (talk | contribs) |
||
Line 13:
==Is the main function correct? ==
Where it appears:
next[i][j] ← next[i][k]
Should it be?:
next[i][j] ← next[k][j]
==Is there a bug in the main loop? ==
|