예제 #1
0
        public void Q2()
        {
            var root = new Day8(Inputs.Day8).ParseNodes();

            Assert.Equal(24820, root.GetValue());
        }
예제 #2
0
        public void CanCalculateValue()
        {
            var root = new Day8(_exampleInput).ParseNodes();

            Assert.Equal(66, root.GetValue());
        }