Last updated
Was this helpful?
Last updated
Was this helpful?
The integer division should truncate toward zero.
Example 1:
Example 2:
Note:
分析
先都abs,注意 Map: p,q,i,ans =map(abs,(dividend, divisor,0,0))
divident = divisor*(1+2+4+6+8.....)
注意其实<< >>就是 *2和//2。 ans = 1+2+4+6+8.....
Time: O(log(answer)) = O(log(dividend // divisor)) = O(log(dividend) - log(divisor))
Space: O(1)
注意这里判断2个异号的方法 :
(dividend<0)!=(divisor<0)
还有就是int的取值