예제 #1
0
        public void Part2()
        {
            var answer = Day14.Part2();

            answer.Should().BeGreaterThan(336692921234L);
            answer.Should().Be(4330547254348L);
        }
예제 #2
0
        public void Part2Example()
        {
            var input = @"mask = 000000000000000000000000000000X1001X
mem[42] = 100
mask = 00000000000000000000000000000000X0XX
mem[26] = 1";

            Day14.Part2(input).Should().Be(208);
        }