我用Java刷 leetcode 7. 整数反转
Posted 深林无鹿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用Java刷 leetcode 7. 整数反转相关的知识,希望对你有一定的参考价值。
class Solution {
public int reverse(int x) {
if (x == 0) return 0;
int res = 0;
while(x != 0) {
if (res > Integer.MAX_VALUE / 10 || res < Integer.MIN_VALUE / 10) return 0;
res = res * 10 + x % 10;
x /= 10;
}
return res;
}
}
以上是关于我用Java刷 leetcode 7. 整数反转的主要内容,如果未能解决你的问题,请参考以下文章