leetcode9_迴文數_判斷整數是否迴文數

1. 負數不是.spa 2. 溢出也不是.code 3. 時間複雜度log(x).blog class Solution { public: bool isPalindrome(int x) { if(x<0) return false; int sum=0; int oldx = x; while(x
相關文章
相關標籤/搜索