Reverse Integer 2021-05-24 18:43
public static int reverse(int x) {
long n = 0;
while (x != 0) {
n = n * 10 + x % 10;
x = x / 10;
}
return (int) n == n ? (int) n : 0;
}
Runtime | Memory |
---|---|
1 ms | 36.2 MB |
EOF
public static int reverse(int x) {
long n = 0;
while (x != 0) {
n = n * 10 + x % 10;
x = x / 10;
}
return (int) n == n ? (int) n : 0;
}
Runtime | Memory |
---|---|
1 ms | 36.2 MB |
EOF