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 fb7d4a0 commit 7419de6Copy full SHA for 7419de6
2024/Day20/Solution.cs
@@ -31,8 +31,8 @@ select 1
31
int Manhattan(Complex a, Complex b) =>
32
(int)(Math.Abs(a.Imaginary - b.Imaginary) + Math.Abs(a.Real - b.Real));
33
34
- // follow the path from finish to start, supposed that there is a single track in the input
35
- // 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
36
Complex[] GetPath(string input) {
37
var lines = input.Split("\n");
38
var map = (
0 commit comments