feat: solved day 12 part 2 🥳
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace GardenGroups;
|
||||
|
||||
record Direction(int Xd, int Yd)
|
||||
{
|
||||
public static readonly Direction Up = new(0, -1);
|
||||
public static readonly Direction Down = new(0, 1);
|
||||
public static readonly Direction Left = new(-1, 0);
|
||||
public static readonly Direction Right = new(1, 0);
|
||||
}
|
||||
Reference in New Issue
Block a user