public void Solution2() { var input = InputReader.ReadLines("Day14/input.txt"); Console.WriteLine(Day14.SolveV2(input)); }
public void ExamplePart2() { var input = InputReader.ReadLines("Day14/input-example2.txt"); Day14.SolveV2(input).Should().Be(208); }