feat: solved day 6 part 1 and part 2
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace GuardGallivant;
|
||||
|
||||
record Direction(char Value)
|
||||
{
|
||||
public static readonly Direction Up = new('^');
|
||||
public static readonly Direction Down = new('v');
|
||||
public static readonly Direction Left = new('<');
|
||||
public static readonly Direction Right = new('>');
|
||||
}
|
||||
Reference in New Issue
Block a user