leetcode 9 Palindrome Number

題目描述: https://leetcode.com/problems/palindrome-number/ AC代碼: class Solution { public: bool isPalindrome(int x) { int t=0; //如果x爲負數、不等於零但只有一位,直接返回false if(x < 0 || x % 10 ==
相關文章
相關標籤/搜索