aoc2023/AdventOfCode/Day_26.cs

16 lines
353 B
C#
Raw Normal View History

2023-12-05 00:16:22 -06:00
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();
}