写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。机智的方案啊。
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def Add(self, num1, num2): 4 return sum([num1,num2]) 5 # write code here
写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。机智的方案啊。
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def Add(self, num1, num2): 4 return sum([num1,num2]) 5 # write code here