Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fibonacci Number #413

Open
nik132-eng opened this issue Oct 13, 2021 · 2 comments
Open

Fibonacci Number #413

nik132-eng opened this issue Oct 13, 2021 · 2 comments
Assignees
Labels
Level 1 10 Points Online Question belongs to online platforms

Comments

@nik132-eng
Copy link
Contributor

Enter your question -

The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting from 0 and 1. That is,

F(0) = 0, F(1) = 1
F(n) = F(n - 1) + F(n - 2), for n > 1.
Given n, calculate F(n).

Enter link to the question(if question belongs to any online platform) -

https://leetcode.com/problems/fibonacci-number/

Tags for the question(eg - Array, Basic, Stack, etc.) -

maths, DP

@nik132-eng
Copy link
Contributor Author

kindly assign me for practice.

@SarthakKeshari
Copy link
Owner

SarthakKeshari commented Oct 13, 2021

@nik132-eng,
Kindly add your solution to "leetcode" folder.
Deadline - 13/10/2021

This Issue will only be counted towards ranking criteria of this repository.

Gentle advice-
A bit more tough questions would be appreciated for Hacktoberfest tag.

@SarthakKeshari SarthakKeshari added Level 1 10 Points Online Question belongs to online platforms labels Oct 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Level 1 10 Points Online Question belongs to online platforms
Projects
None yet
Development

No branches or pull requests

2 participants