
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
Example
No.1
Input: a = 1, b = 2
Output: 3
No.2
Input: a = -2, b = 3
Output: 1
Code
1 |
|

Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
Input: a = 1, b = 2
Output: 3
Input: a = -2, b = 3
Output: 1
1 |
|
近期评论