summaryrefslogtreecommitdiff
path: root/leetcode/cpp/371.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-09-26 12:50:45 +0800
committercrupest <crupest@outlook.com>2021-09-26 12:50:45 +0800
commitcf2cea7e417a9d2bc946587d4a6ce48d6d4403d8 (patch)
tree6d08eea35a9f1cd9a66da48fbc2e5e88f742100e /leetcode/cpp/371.cpp
parent450e391b6feb6e6dcefd07a3b85dfd23b69fa283 (diff)
downloadsolutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.tar.gz
solutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.tar.bz2
solutions-cf2cea7e417a9d2bc946587d4a6ce48d6d4403d8.zip
...
Diffstat (limited to 'leetcode/cpp/371.cpp')
-rw-r--r--leetcode/cpp/371.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/leetcode/cpp/371.cpp b/leetcode/cpp/371.cpp
new file mode 100644
index 0000000..3a7bc8b
--- /dev/null
+++ b/leetcode/cpp/371.cpp
@@ -0,0 +1,25 @@
+
+class Solution {
+public:
+ int getSum(int a, int b) {
+ unsigned x = a, y = b;
+
+ unsigned carry = 0;
+
+ unsigned result = 0;
+
+ for (int i = 0; i < sizeof(int) * 8; i++) {
+ unsigned mask = 1 << i;
+
+ unsigned n = x & mask ? 1 : 0, m = y & mask ? 1 : 0;
+
+ if (n ^ m ^ carry) {
+ result |= mask;
+ }
+
+ carry = n & m || n & carry || m & carry;
+ }
+
+ return static_cast<int>(result);
+ }
+};