题目描述:
写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。
思路:
Python实现:
// An highlighted block
class Solution:
def Add(self, num1, num2):
# write code here
s = []
s.append(num1)
s.append(num2)
return sum(s)
python 实现2:
// An highlighted block
class Solution:
def Add(self, num1, num2):
# write code here
return sum([num1,num2])