两整数之和
给你两个整数 a 和 b ,不使用 运算符 + 和 - ,计算并返回两整数之和。
示例 1:
输入:a = 1, b = 2
输出:3
1
2
2
var getSum = function(a, b) {
const m = Math.pow(2,a);
const n = Math.pow(2,b);
return Math.log2(m*n);
};
1
2
3
4
5
2
3
4
5
/**
* @param {number} a
* @param {number} b
* @return {number}
*/
var getSum = function(a, b) {
while (b != 0) {
const carry = (a & b) << 1;
a = a ^ b;
b = carry;
}
return a;
};
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/sum-of-two-integers/