public void Solution1() { var input = new List <int> { 19, 41, 743, 13, 17, 29, 643, 37, 23 }; Console.WriteLine(Day13Part1.Solve(1015292, input)); }
public void ExamplePart1() { var input = new List <int> { 7, 13, 59, 31, 19 }; Day13Part1.Solve(939, input).Should().Be(295); }