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