public void ExamplePart1() { Day05.GetSeatId("BFFFBBFRRR").Should().Be(567); Day05.GetSeatId("FFFBBBFRRR").Should().Be(119); Day05.GetSeatId("BBFFBBFRLL").Should().Be(820); }
public void Solution2() { var boardingPasses = InputReader.ReadLines("Day05/input.txt"); Console.WriteLine(Day05.SolvePart2(boardingPasses)); }