Exemplo n.º 1
0
    public static void Y2015_Day10_AsLookAndSay(string value, string expected)
    {
        // Act
        string actual = Day10.AsLookAndSay(value);

        // Assert
        actual.ShouldBe(expected);
    }