예제 #1
0
        public void test_problem2()
        {
            var problem = new Problem2();

            var result = problem.execute();

            Assert.AreEqual(0, result);
        }
예제 #2
0
 static void Main(string[] args)
 {
     Problem2 problem = new Problem2();
     problem.execute();
     Console.ReadKey();
 }