Exemplo n.º 1
0
    public static void Y2016_Day21_RotateDirection_Returns_Correct_Solution(char[] values, bool right, int steps, IEnumerable <char> expected)
    {
        // Act
        Day21.RotateDirection(values, right, steps, reverse: false);

        // Assert
        values.ShouldBe(expected);
    }