From 8d306499bf8c66c800f4b9a44389fb738495017c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Dec 2024 09:46:38 +0000 Subject: [PATCH] Update docs on Fri Dec 20 09:46:38 UTC 2024 --- 2024/20/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2024/20/index.html b/2024/20/index.html index 9120bbf7..4e87699d 100644 --- a/2024/20/index.html +++ b/2024/20/index.html @@ -326,8 +326,8 @@

Race Condition

int Manhattan(Complex a, Complex b) => (int)(Math.Abs(a.Imaginary - b.Imaginary) + Math.Abs(a.Real - b.Real)); - // follow the path from finish to start, supposed that there is a single track in the input - // the index of a position in the returned array equals to its distance from the finish + // Follow the path from finish to start, supposed that there is a single track in the input. + // The index of a position in the returned array equals to its distance from the finish Complex[] GetPath(string input) { var lines = input.Split("\n"); var map = (