371. 两整数之和

Posted wuyi_all_in

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了371. 两整数之和相关的知识,希望对你有一定的参考价值。


 

371.


class Solution 
public:
int getSum(int a, int b)
while(b)
int carry = unsigned(a&b) << 1;
a ^= b;
b = carry;

return a;


;

 

以上是关于371. 两整数之和的主要内容,如果未能解决你的问题,请参考以下文章

371. 两整数之和

371. 两整数之和

LeetCode|371. 两整数之和

Leetcode 371. 两整数之和

LeetCode 371. 两整数之和 Sum of Two Integers

LeetCode 371. 两整数之和 Sum of Two Integers