Ejemplo n.º 1
0
        public void TestNumberOfStepsBetweenFirstDuplicate()
        {
            int[] initialBlocks = new[] { 0, 2, 7, 0 };
            var   sut           = new DaySix();
            var   result        = sut.NumberOfStepsBetweenFirstDuplicate(initialBlocks);

            Assert.Equal(4, result);
        }