示例#1
0
        public void Solve_WithAndCheck_WithExampleInput()
        {
            var check = new CustomsCheck(input);

            Assert.Equal(6, check.Solve(true));
        }
示例#2
0
        public void Solve_WithExampleInput()
        {
            var check = new CustomsCheck(input);

            Assert.Equal(11, check.Solve(false));
        }