Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -1,9 +1,7 @@
proc floydwarshall w[][] n . .
proc floydwarshall w[][] n .
for i to n
con[][] &= [ ]
for j to n
con[i][] &= 1 / 0
.
for j to n : con[i][] &= 1 / 0
.
for i to len w[][]
con[w[i][1]][w[i][2]] = w[i][3]