public void SecondTry(int x, int expected)
        {
            var solution = new Algorithms.Leetcode.Easy.ReverseInteger.ReverseInteger();
            var actual   = solution.SecondTry(x, expected);

            Assert.AreEqual(expected, actual);
        }