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