feat: solved day 2 part 1...part 2 is WIP

This commit is contained in:
Stevan Freeborn
2024-12-03 02:32:30 -06:00
parent 17f6c01170
commit 60b5c726cf
10 changed files with 340 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace RedNosedReports;
static class Direction
{
public const string Unknown = "Unknown";
public const string Increasing = "Increasing";
public const string Decreasing = "Decreasing";
}