Files
advent-of-code-2024/02/RedNosedReports/Direction.cs
T

7 lines
152 B
C#
Raw Normal View History

2024-12-03 02:32:30 -06:00
namespace RedNosedReports;
static class Direction
{
public const string Increasing = "Increasing";
public const string Decreasing = "Decreasing";
}