LeetCode 371. 两整数之和 Sum of Two Integers
Posted zsy-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 371. 两整数之和 Sum of Two Integers相关的知识,希望对你有一定的参考价值。
不断更新值和进位。
class Solution { public: int getSum(int a, int b) { return b == 0 ? a : getSum(a ^ b, ((unsigned int)a & b) << 1); } };
以上是关于LeetCode 371. 两整数之和 Sum of Two Integers的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 371 两整数之和[位运算] HERODING的LeetCode之路