コード例 #1
0
    public void Y2021_Day21_PlayPractice_Returns_Correct_Value()
    {
        // Arrange
        string[] players =
        {
            "Player 1 starting position: 4",
            "Player 2 starting position: 8",
        };

        // Act
        int actual = Day21.PlayPractice(players);

        // Assert
        actual.ShouldBe(739785);
    }