public void Y2021_Day21_Play_Returns_Correct_Value() { // Arrange string[] players = { "Player 1 starting position: 4", "Player 2 starting position: 8", }; // Act long actual = Day21.Play(players); // Assert actual.ShouldBe(444356092776315); }