Skip to content

Commit

Permalink
Update docs on Fri Dec 20 09:46:38 UTC 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 20, 2024
1 parent 18863bd commit 8d30649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2024/20/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ <h2 id="problem-name">Race Condition</h2>
int Manhattan(Complex a, Complex b) =&gt;
(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(&quot;\n&quot;);
var map = (
Expand Down

0 comments on commit 8d30649

Please sign in to comment.