9. Palindrome Number

題目: 解答: 數字化爲數字數組,然後驗證首尾是否相同即可 class Solution { public: bool isPalindrome(int x) { if(x < 0) return false; vector<int> vec(32,0); int index = 0; while(x > 0){
相關文章
相關標籤/搜索