public void ShouldReturnCorrectResult()
            {
                var    problem = new Problem0020();
                object result  = problem.GetResult();

                result.Should().Be(648);
            }
        public bool IsValidTests(string input)
        {
            var problem = new Problem0020();

            var result = problem.IsValid(input);

            return result;
        }