Skip to content

Instantly share code, notes, and snippets.

@kanrourou
Created March 25, 2018 17:57
class Solution {
public:
int newInteger(int n) {
int res = 0, base = 9, tens = 1;
while(n)
{
int digit = n % base;
res = digit * tens + res;
n /= base;
tens *= 10;
}
return res;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment