Beispiel #1
0
    public void Test1()
    {
        var solution = new LeetCode.P12.A2.Solution();
        var result   = solution.IntToRoman(3);

        Assert.Equal("III", result);
    }
Beispiel #2
0
    public void Test3()
    {
        var solution = new LeetCode.P12.A2.Solution();
        var result   = solution.IntToRoman(1994);

        Assert.Equal("MCMXCIV", result);
    }