Esempio n. 1
0
            public void ShouldReturnCorrectResult()
            {
                var    problem = new Problem0013();
                object result  = problem.GetResult();

                result.Should().Be(5537376230);
            }
        public int RomanToInt(string input)
        {
            var problem = new Problem0013();

            var result = problem.RomanToInt(input);

            return(result);
        }