Example #1
0
        public void TestMethod2()
        {
            string input    = @"0
0
0
0
0";
            int    solution = PuzzleSolver.Solve51(input);

            Assert.AreEqual(solution, 10);
        }
Example #2
0
        public void TestMethod1()
        {
            string input    = @"0
3
0
1
-3";
            int    solution = PuzzleSolver.Solve51(input);

            Assert.AreEqual(solution, 5);
        }