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

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

            Assert.Equal(1830117, result);
        }