P Li

Results 2 comments of P Li

``` signed long long int r=0; for(;x;x/=10) r = r*10+x%10; if(abs(r)>(pow(2,31)-1)) return 0; else return (int) r; ```

This issue was solved. Plz check my comment on Feb 26, update the code and close it. Thanks a lot!