python练习

Acacia ·
更新时间:2024-11-13
· 841 次阅读

大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0,第1项是1)。
n<=39

class Solution: def Fibonacci(self, n): # write code here res=[0,1,1,2] while len(res)<=n: res.append(res[-1]+res[-2]) return res[n]

一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。

# -*- coding:utf-8 -*- class Solution: def jumpFloor(self, n): # write code here res = [1, 1, 2] while len(res) <= n: res.append(res[-1] + res[-2]) return res[n]

一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。

class Solution: def jumpFloorII(self, number): # write code here if number<=0: return 0 else: return 2**(number-1) Null_Pan 原创文章 29获赞 31访问量 1305 关注 私信 展开阅读全文
作者:Null_Pan



python练习 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号