摘要: class Solution { public boolean isPalindrome(int x) { if(x>Integer.MAX_VALUE) return false; String string= String.valueOf(x); char[] chars = string.to 阅读全文
posted @ 2017-09-03 14:48 戴林甫 阅读(107) 评论(0) 推荐(0) 编辑