public class Solution { public int jumpFloorII(int target) { return (int)Math.pow(2,target-1); } }
暂无评论,快来抢首评~
相关推荐