Example #1
0
        public void Solution()
        {
            /*
             * In the first one-thousand expansions, how many fractions contain a numerator with more digits than denominator?
             */

            var sut = new E057SquareRootConvergents();

            Assert.Equal(153, sut.GetNumeratorWithMoreDigitsThanDenominator(upto: 1000));



            /*
             * Congratulations, the answer you gave to problem 57 is correct.
             *
             * You are the 36239th person to have solved this problem.
             */
        }