Add missing flavor texts

This commit is contained in:
2023-12-14 23:05:03 -06:00
parent 7c66d81b89
commit 91fcf39e17
2 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@ internal class Day11 : Day
} }
} }
return $"<+white>{total}"; return $"Sum of shortest paths: <+white>{total}";
} }
internal override string Part2() internal override string Part2()
@ -101,6 +101,6 @@ internal class Day11 : Day
} }
} }
return $"<+white>{total}"; return $"Sum of expanded shortest paths: <+white>{total}";
} }
} }

View File

@ -192,7 +192,7 @@ internal class Day12 : Day
{ {
long total = Solve(springList); long total = Solve(springList);
return $"<+white>{total}"; return $"Total number of arrangements: <+white>{total}";
} }
internal override string Part2() internal override string Part2()
@ -217,6 +217,6 @@ internal class Day12 : Day
long total = unfolded.Sum(item => GetPermutations(item.puzzle, item.slots)); long total = unfolded.Sum(item => GetPermutations(item.puzzle, item.slots));
return $"<+white>{total}"; return $"Total number of unfolded arrangements: <+white>{total}";
} }
} }