摘要: 在力扣网上做第二道简单的题,上代码: def reverse(self, x): """ :type x: int :rtype: int """ k= 0 j=0 if (-2)**31<x<0: x = -x # 参数x为负值时,先转成正数,在计算 while x>0: if x% 10!=0 阅读全文
posted @ 2019-07-12 15:40 婧秋-fool 阅读(1870) 评论(0) 推荐(0) 编辑