Files
advent-of-code-2024/16/ReindeerMaze/Tile.cs
T

3 lines
79 B
C#
Raw Normal View History

2024-12-17 22:58:51 -06:00
namespace ReindeerMaze;
record Tile(Position Position, int DirectionIndex);