Leetcode PHP題解--D84 371. Sum of Two Integers

D84 371. Sum of Two Integers

題目連接

371. Sum of Two Integersphp

題目分析

相加給定的兩個數,但不能使用+或-運算符。.net

思路

能夠用二進制的與運算完成。此處用array_sum完成。code

最終代碼

<?php
class Solution {

    /**
     * @param Integer $a
     * @param Integer $b
     * @return Integer
     */
    function getSum($a, $b) {
        return array_sum([$a,$b]);
    }
}

若以爲本文章對你有用,歡迎用愛發電資助。leetcode

相關文章
相關標籤/搜索