Esempio n. 1
0
        public void testGetPositionWithAllTheGifts()
        {
            var sot    = new DayNineteen();
            var result = sot.GetPositionWithAllTheGifts(5);

            Assert.Equal(3, result);
        }
Esempio n. 2
0
        public void testWithActualPartA()
        {
            var sot    = new DayNineteen();
            var result = sot.GetPositionWithAllTheGifts(DayNineteen.PUZZLE_INPUT);

            Assert.Equal(1830117, result);
        }