2015年10月21日

[leetcode]Palindrome Number

摘要: class Solution {public: bool isPalindrome(int x) { if(x < 0) return false; if(x < 10) return true; int temp1; int temp2... 阅读全文

posted @ 2015-10-21 22:31 Mereyct 阅读(182) 评论(0) 推荐(0) 编辑

导航