题解 | #跳台阶#
跳台阶
http://www.nowcoder.com/practice/8c82a5b80378478f9484d87d1c5f12a4
if(target < 0) return -1; if(target == 1 || target ==0) return 1; return jumpFloor(target - 1) + jumpFloor(target -2);
1、拿到题目首先判断是否需要循环
2、发现需要三个判断就可以了
3、直接开始
跳台阶
http://www.nowcoder.com/practice/8c82a5b80378478f9484d87d1c5f12a4
if(target < 0) return -1; if(target == 1 || target ==0) return 1; return jumpFloor(target - 1) + jumpFloor(target -2);
1、拿到题目首先判断是否需要循环
2、发现需要三个判断就可以了
3、直接开始
相关推荐