Skip to content

Commit

Permalink
style: format markdown files with remark-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
24OI-bot committed Dec 11, 2024
1 parent 11656f1 commit f712ee4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion docs/graph/shortest-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ author: du33169, lingkerio, Taoran-01
for (x = 1; x <= n; x++) {
for (y = 1; y <= n; y++) {
f[k][x][y] = min(f[k - 1][x][y], f[k - 1][x][k] + f[k - 1][k][y]);

}
}
}
Expand Down

0 comments on commit f712ee4

Please sign in to comment.