写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、四则运算符号。 数据范围:两个数都满足 进阶:空间复杂度 ,时间复杂度
示例1
输入
1,2
输出
3
示例2
输入
0,0
输出
0
加载中...
import java.util.*; public class Solution { public int Add(int num1,int num2) { } }
class Solution { public: int Add(int num1, int num2) { } };
# -*- coding:utf-8 -*- class Solution: def Add(self, num1, num2): # write code here
class Solution { public int Add(int num1, int num2) { // write code here } }
function Add(num1, num2) { // write code here } module.exports = { Add : Add };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num1 int整型 # @param num2 int整型 # @return int整型 # class Solution: def Add(self , num1: int, num2: int) -> int: # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ func Add( num1 int , num2 int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ int Add(int num1, int num2 ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param num1 int整型 # @param num2 int整型 # @return int整型 # class Solution def Add(num1, num2) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ def Add(num1: Int,num2: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ fun Add(num1: Int,num2: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ public int Add (int num1, int num2) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ export function Add(num1: number, num2: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ func Add ( _ num1: Int, _ num2: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param num1 int整型 * @param num2 int整型 * @return int整型 */ pub fn Add(&self, num1: i32, num2: i32) -> i32 { // write code here } }
1,2
3
0,0
0