20191112——leetcode 第七题 整数反转
class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ if x == 0: return 0 target = str(x) x = ...