We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18863bd commit 8d30649Copy full SHA for 8d30649
2024/20/index.html
@@ -326,8 +326,8 @@ <h2 id="problem-name">Race Condition</h2>
326
int Manhattan(Complex a, Complex b) =>
327
(int)(Math.Abs(a.Imaginary - b.Imaginary) + Math.Abs(a.Real - b.Real));
328
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
+ // 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
331
Complex[] GetPath(string input) {
332
var lines = input.Split("\n");
333
var map = (
0 commit comments