From f712ee45e05bd6ef61c9d99682ee98d3bd791bd8 Mon Sep 17 00:00:00 2001 From: 24OI-bot <15963390+24OI-bot@users.noreply.github.com> Date: Wed, 11 Dec 2024 04:00:50 +0000 Subject: [PATCH] style: format markdown files with remark-lint --- docs/graph/shortest-path.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/graph/shortest-path.md b/docs/graph/shortest-path.md index 01918bec4e43a..87ba4a88d38c0 100644 --- a/docs/graph/shortest-path.md +++ b/docs/graph/shortest-path.md @@ -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]); - } } }