feat: solved day 16 part 2

This commit is contained in:
Stevan Freeborn
2024-12-17 22:58:51 -06:00
parent 5b7dbd5b1d
commit 655b1ffd8f
8 changed files with 209 additions and 88 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace ReindeerMaze;
record MazePath(List<Tile> Tiles, int Score)
{
public Tile CurrentTile => Tiles.Last();
}