aoc2023/AdventOfCode/Day_26.cs
2023-12-05 06:16:22 +00:00

16 lines
353 B
C#

namespace AdventOfCode;
public class Day_26 : BaseDay
{
private readonly string _input;
public Day_26()
{
_input = File.ReadAllText(InputFilePath);
}
public override ValueTask<string> Solve_1() => new(_input.Length.ToString());
public override ValueTask<string> Solve_2() => throw new NotImplementedException();
}