Example #1
0
        public void Solution()
        {
            /*
             * Find the sum of the only ordered set of six cyclic 4-digit numbers for which each polygonal
             * type: triangle, square, pentagonal, hexagonal, heptagonal, and octagonal,
             * is represented by a different number in the set.
             */

            var sut = new E061CyclicalFigurateNumbers();

            Assert.Equal(28684, sut.GetSumCyclic4DigitsNumber());

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