29. 兩數相除

class Solution: def divide(self, dividend, divisor): """ :type dividend: int :type divisor: int :rtype: int """ i = abs(dividend)//abs(divisor) if dividend > 0 and d
相關文章
相關標籤/搜索