•  
      tasks #43032 Python Program for n-th Fibonacci number
    #43032
    Ritish Singh (ritish31)
    2022-07-29 10:20
    2022-07-29 10:20
    Details
    Python Program for n-th Fibonacci number
    Define a function solve() . This will take n
    if n <= 2, then
    return n - 1
    otherwise, return solve(n - 1) + solve(n - 2)
    5 - Medium
    State of Progress
    2022-05-02
    100
    2022-05-03
    Ritish Singh (ritish31)
    Rakesh Kumar Verma (rakesh.verma)
    2022-05-03
    Closed
    Attachments
    References
    References list is empty