leetcode 9:回文数

bool isPalindrome(int x) { vector<int> a; if(x<0) return false; if(x==0) return true; if(x>0){ while(x/10!=0){ a.pus
相关文章
相关标签/搜索