Skip to content

Commit 8d30649

Browse files
Update docs on Fri Dec 20 09:46:38 UTC 2024
1 parent 18863bd commit 8d30649

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2024/20/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ <h2 id="problem-name">Race Condition</h2>
326326
int Manhattan(Complex a, Complex b) =&gt;
327327
(int)(Math.Abs(a.Imaginary - b.Imaginary) + Math.Abs(a.Real - b.Real));
328328

329-
// follow the path from finish to start, supposed that there is a single track in the input
330-
// the index of a position in the returned array equals to its distance from the finish
329+
// Follow the path from finish to start, supposed that there is a single track in the input.
330+
// The index of a position in the returned array equals to its distance from the finish
331331
Complex[] GetPath(string input) {
332332
var lines = input.Split(&quot;\n&quot;);
333333
var map = (

0 commit comments

Comments
 (0)