码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]9 Palindrome Number

时间:2015-01-02 16:14:01      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/palindrome-number/

http://fisherlei.blogspot.com/2012/12/leetcode-palindrome-number.html

public class Solution {
    public boolean isPalindrome(int x) {
        
        // Assume
        // Negative numbers cannot be palindrome
        
        if (x < 0)
            return false;
        
        // No extra space
        long reversed = 0;  // In case overflow
        int t = x;
        while (t > 0)
        {
            reversed = reversed * 10 + t % 10;
            t /= 10;
        }
        return reversed == x;
    }
}


[LeetCode]9 Palindrome Number

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1598406

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!