-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path17.1-Add_Without_Plus.py
40 lines (31 loc) · 1.13 KB
/
17.1-Add_Without_Plus.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
# CTCI 17.1
# Add Without Plus
#-------------------------------------------------------------------------------
# My Solution
#-------------------------------------------------------------------------------
def add_without_plus(a, b):
while b != 0:
# Sum without carry bit
sum = a ^ b
# Sum with only carrying
carry = (a & b) << 1
a = sum
b = carry
#print(a,b)
return a
#-------------------------------------------------------------------------------
#Testing
#-------------------------------------------------------------------------------
import unittest
class Test(unittest.TestCase):
def test_add_without_plus(self):
self.assertEqual(add_without_plus(1, 1), 2)
self.assertEqual(add_without_plus(1, 2), 3)
self.assertEqual(add_without_plus(1001, 234), 1235)
# does not work with negatives :(
#self.assertEqual(add_without_plus(5, -1), 4)
#self.assertEqual(add_without_plus(7,-5), 2)
#self.assertEqual(add_without_plus(7,-29), -22)
#self.assertEqual(add_without_plus(-2,10), 8)
if __name__ == "__main__":
unittest.main()