Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
65 lines (54 loc) · 1.33 KB

File metadata and controls

65 lines (54 loc) · 1.33 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
'''
Leetcode: Divide Two Integers
Divide two integers without using multiplication, division and mod operator.
'''
from __future__ import division
import random
def divide_two_nums(x, y): # x/y
if y == 0: return None
q = 0
a = long(x); b = long(y)
if y < 0: b = ~b + 1
while a > b:
a -= b
q += 1
if y < 0: q = ~q + 1
return q
##############################################
def bit_add(x, y):
carry = x & y
result = x ^ y
while carry != 0:
shifted_carry = carry << 1
# try to add shifted carry and result
carry = result & shifted_carry
result = result ^ shifted_carry
return result
def bit_add2(x, y):
while True:
carry = x & y
result = x ^ y
x = carry << 1
y = result
if carry == 0: break
return y
def bit_sub(x, y):
print x, bin(x)
print ~y+1, bin(~y+1)
return bit_add2(x, ~y+1)
def bit_multi(x, y):
result = 0
for i in range(y):
result = bit_add(result, x)
return result
''' Divide two integers using only bitwise operations '''
def bit_divide(x, y):
pass
if __name__ == '__main__':
print 234, 11
print divide_two_nums(234,11)
print divide_two_nums(234,-11)
print bit_add(234,11)
#print bit_sub(234,11)
print bit_multi(234,11)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.