摘要: "题目链接" 【题解】 还是要注意,取反的时候, 2^31 取反的话会爆掉Int。。(因为int的正数最多到2^31 1) 【代码】 cpp class Solution { public: bool isPalindrome(int x) { int f = 1; string s; s = "" 阅读全文
posted @ 2019-11-04 09:45 AWCXV 阅读(98) 评论(0) 推荐(0) 编辑