Skip to content

Commit 7419de6

Browse files
committed
comment
1 parent fb7d4a0 commit 7419de6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2024/Day20/Solution.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ select 1
3131
int Manhattan(Complex a, Complex b) =>
3232
(int)(Math.Abs(a.Imaginary - b.Imaginary) + Math.Abs(a.Real - b.Real));
3333

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
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
3636
Complex[] GetPath(string input) {
3737
var lines = input.Split("\n");
3838
var map = (

0 commit comments

Comments
 (0)