function jumpFloorII(number)
{
// write code here
}
#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# @param number int整型
# @return int整型
#
class Solution
def jumpFloorII(number)
# write code here
end
end
object Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
def jumpFloorII(number: Int): Int = {
// write code here
}
}
object Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
fun jumpFloorII(number: Int): Int {
// write code here
}
}
import java.util.*;
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
public int jumpFloorII (int number) {
// write code here
}
}
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
export function jumpFloorII(number: number): number {
// write code here
}
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
func jumpFloorII ( _ number: Int) -> Int {
// write code here
}
}
struct Solution{
}
impl Solution {
fn new() -> Self {
Solution{}
}
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param number int整型
* @return int整型
*/
pub fn jumpFloorII(&self, number: i32) -> i32 {
// write code here
}
}
3
4