예제 #1
0
        public void Verify_Solution_For_OneHundred_Is_FortyFour()
        {
            var problem = new ProblemTwo();

            long solution = problem.Solve(100);

            Assert.AreEqual(44, solution);
        }
예제 #2
0
        public void Verify_Solution_For_OneHundred_Is_FortyFour()
        {
            var problem = new ProblemTwo();

            long solution = problem.Solve(100);

            Assert.AreEqual(44, solution);
        }
예제 #3
0
        public void Determine_Solution()
        {
            var problem = new ProblemTwo();

            long solution = problem.Solve(4000000);

            Console.WriteLine("Solution = {0}", solution);
        }
예제 #4
0
        public void Determine_Solution()
        {
            var problem = new ProblemTwo();

            long solution = problem.Solve(4000000);

            Console.WriteLine("Solution = {0}", solution);
        }