Skip to content

Commit 999e9c6

Browse files
Update bit_manipulation/sum_two_integers/test_sum_of_two_integers.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 3298d46 commit 999e9c6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bit_manipulation/sum_two_integers/test_sum_of_two_integers.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
(3, 10, 13),
99
(-10, -40, -50),
1010
(13, 16, 29),
11+
(2147483647, 0, 2147483647),
12+
(-2147483648, 0, -2147483648),
13+
(2147483647, 1, -2147483648),
1114
]
1215

1316
class SumOfTwoIntegersTestCase(unittest.TestCase):

0 commit comments

Comments
 (0)