feat: solved day 6 part 1 and part 2

This commit is contained in:
Stevan Freeborn
2024-12-07 01:28:15 -06:00
parent 75af0819fa
commit abf19be8cd
7 changed files with 306 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace GuardGallivant;
record Move(int XOffset, int YOffset)
{
public static readonly Move Up = new(0, -1);
public static readonly Move Down = new(0, 1);
public static readonly Move Left = new(-1, 0);
public static readonly Move Right = new(1, 0);
}