Sum of Two Integers — LeetCode 371 Python Solution
MediumBit ManipulationMath
- Problem
- #371
- Pattern
- Bit Manipulation
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given two integers a and b, return the sum of the two integers without using the operators + and -.
Example
- Input
- a = 1, b = 2
- Output
- 3
Python solution
Python
class Solution:
def getSum(self, a: int, b: int) -> int:
a, b = a & 0xFFFFFFFF, b & 0xFFFFFFFF
while b:
carry = ((a & b) << 1) & 0xFFFFFFFF
a, b = a ^ b, carry
return a if a < 0x80000000 else ~(a ^ 0xFFFFFFFF)Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) auxiliary |
Pattern: Bit Manipulation
Use XOR, masks and the low-bit trick to replace whole data structures with an integer. LeetCode 371. Sum of Two Integers is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Bit Manipulation.
The bit manipulation guide has the Python template for the pattern and the 194 LeetCode problems that use it.
Related problems
On study lists
This problem is on Blind 75 and NeetCode 150.
Frequently asked questions
- How hard is LeetCode 371. Sum of Two Integers?
- LeetCode 371. Sum of Two Integers is rated Medium on LeetCode.
- What is the time complexity of LeetCode 371. Sum of Two Integers?
- The Python solution on this page runs in O(n).
- What is the space complexity of LeetCode 371. Sum of Two Integers?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 371. Sum of Two Integers cover?
- LeetCode 371. Sum of Two Integers is tagged Bit Manipulation and Math on LeetCode.