Created
March 25, 2018 17:57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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