Kuris
Kuris
全部文章
题解
面试必刷TOP101(2)
归档
标签
去牛客网
登录
/
注册
Kuris的博客
全部文章
/ 题解
(共1篇)
题解 | #跳台阶#
public class Solution { public int jumpFloor(int target) { if(target == 1){ return 1; }else if(target == 2){ ...
Java
动态规划
递归
2022-06-10
0
203