コード例 #1
0
ファイル: Day17Test.cs プロジェクト: frangiz/AdventOfCode2016
        public void ExampleB2()
        {
            var solver = new Day17.PuzzleSolver();

            Assert.AreEqual(492, solver.FindLongestPath("kglvqrro").Length);
        }
コード例 #2
0
ファイル: Day17Test.cs プロジェクト: frangiz/AdventOfCode2016
        public void ExampleB3()
        {
            var solver = new Day17.PuzzleSolver();

            Assert.AreEqual(830, solver.FindLongestPath("ulqzkmiv").Length);
        }
コード例 #3
0
ファイル: Day17Test.cs プロジェクト: frangiz/AdventOfCode2016
        public void ExampleB1()
        {
            var solver = new Day17.PuzzleSolver();

            Assert.AreEqual(370, solver.FindLongestPath("ihgpwlah").Length);
        }