mirror of
https://github.com/parnic/advent-of-code-2023.git
synced 2025-06-16 16:50:14 -05:00
Add missing flavor texts
This commit is contained in:
@ -81,7 +81,7 @@ internal class Day11 : Day
|
||||
}
|
||||
}
|
||||
|
||||
return $"<+white>{total}";
|
||||
return $"Sum of shortest paths: <+white>{total}";
|
||||
}
|
||||
|
||||
internal override string Part2()
|
||||
@ -101,6 +101,6 @@ internal class Day11 : Day
|
||||
}
|
||||
}
|
||||
|
||||
return $"<+white>{total}";
|
||||
return $"Sum of expanded shortest paths: <+white>{total}";
|
||||
}
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ internal class Day12 : Day
|
||||
{
|
||||
long total = Solve(springList);
|
||||
|
||||
return $"<+white>{total}";
|
||||
return $"Total number of arrangements: <+white>{total}";
|
||||
}
|
||||
|
||||
internal override string Part2()
|
||||
@ -217,6 +217,6 @@ internal class Day12 : Day
|
||||
|
||||
long total = unfolded.Sum(item => GetPermutations(item.puzzle, item.slots));
|
||||
|
||||
return $"<+white>{total}";
|
||||
return $"Total number of unfolded arrangements: <+white>{total}";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user