Ejemplo n.º 1
0
        public void Part1_Example1_Should_Be_35()
        {
            // Arrange
            var inputs = new string[] { "16", "10", "15", "5", "1", "11", "7", "19", "6", "12", "4" };

            // Act
            adapterBag = new AdapterBag(inputs);
            var steps  = adapterBag.CountSteps();
            var actual = steps[1] * steps[3];

            // Assert
            actual.ShouldBe(35);
        }
Ejemplo n.º 2
0
        public void Part1_Example2_Should_Be_220()
        {
            // Arrange
            var inputs = new string[] { "28", "33", "18", "42", "31", "14", "46", "20", "48", "47", "24", "23", "49", "45", "19", "38", "39", "11",
                                        "1", "32", "25", "35", "8", "17", "7", "9", "4", "2", "34", "10", "3" };

            // Act
            adapterBag = new AdapterBag(inputs);
            var steps  = adapterBag.CountSteps();
            var actual = steps[1] * steps[3];

            // Assert
            actual.ShouldBe(220);
        }