摘要:
https://leetcode.com/problems/palindrome-number/description/ 题意 判断一个数字是否是回文 分析 32132132100 /100 删去0的部分 %100 留下0的部分 代码 class Solution { public boolean 阅读全文
摘要:
https://leetcode.com/problems/string-to-integer-atoi/ 题意 把一个字符串转化成整数 分析 https://www.cnblogs.com/springfor/p/3896499.html 主要就是边界条件的判断问题 1.先把空格去掉,str = 阅读全文
摘要:
https://leetcode.com/problems/reverse-integer/description/ 题意 将一个整数进行翻转。 Example 1: Input: 123 Output: 321 Input: 123 Output: 321 Example 2: Input: -1 阅读全文