-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path29.DivideTwoIntegers.py
44 lines (36 loc) · 1.08 KB
/
29.DivideTwoIntegers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class Solution:
def divide(self, dividend: int, divisor: int) -> int:
max_val = 2 ** 31 - 1
min_val = - 2 ** 31
if divisor == 1:
return min(dividend, max_val)
if divisor == -1:
return min(-dividend, max_val)
negative = False
if dividend < 0:
negative = not negative
if divisor < 0:
negative = not negative
dividend, divisor = abs(dividend), abs(divisor)
if dividend < divisor:
return 0
pows = []
power = 1
while power * divisor <= dividend:
power = divisor ** len(pows)
pows.append(power)
ans = 0
while len(pows) > 1:
power = pows.pop()
x = 0
while dividend - power >= 0:
x += 1
dividend -= power
ans += x * divisor ** (len(pows) - 1)
if negative == True:
ans = - ans
if ans > max_val:
return max_val
if ans < min_val:
return max_val
return ans