首页 > 编程语言 > 详细

leetcode:Reverse Integer【Python版】

时间:2014-10-18 23:39:56      阅读:298      评论:0      收藏:0      [点我收藏+]

1、在进入while之前,保证x是非负的;

2、符号还是专门用flag保存

===================

3、另一思路:将integer转换成string,然后首位swap,直至中间;

 1 class Solution:
 2     # @return an integer
 3     def reverse(self, x):
 4         ret = 0
 5         flag = 1
 6         if x < 0:
 7             flag = -1
 8             x *= -1
 9         while(x!=0):
10             ret = ret*10+x%10
11             x = x/10
12         return ret*flag

 

leetcode:Reverse Integer【Python版】

原文:http://www.cnblogs.com/CheeseZH/p/4033801.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!