Example #1
0
        public void Solution()
        {
            var sut = new E001Multiplesof3and5();

            Assert.Equal(233168, sut.Sum(below: 1000));
            //Congratulations, the answer you gave to problem 1 is correct.
            //You are the 833904th person to have solved this problem.
        }
Example #2
0
        public void Test1()
        {
            var sut = new E001Multiplesof3and5();

            Assert.Equal(23, sut.Sum(below: 10));
        }