예제 #1
0
        public void IntIsPalindromTest(int startInt, bool expectedIsPalindrome)
        {
            bool testIsPalindrome = LeetCode.IntIsPalindrome(startInt);

            Assert.AreEqual(expectedIsPalindrome, testIsPalindrome);
        }