Ejemplo n.º 1
0
        public void testWithActualPartA()
        {
            var sot    = new DaySeventeen();
            var result = sot.FindShortestPathThroughGrid(DaySeventeen.PUZZLE_INPUT, 3, 3);

            Assert.Equal("RDDRULDDRR", result);
        }
Ejemplo n.º 2
0
        public void testFindShortestPathThroughGrid(string input, string expected)
        {
            var sot    = new DaySeventeen();
            var result = sot.FindShortestPathThroughGrid(input, 3, 3);

            Assert.Equal(expected, result);
        }