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

Example #26

Closed
wants to merge 2 commits into from
Closed

Example #26

wants to merge 2 commits into from

Conversation

ravilushqa
Copy link
Owner

@ravilushqa ravilushqa commented May 22, 2023

Added a new package "fibonacci" and implemented a recursive function "fibonacci" that returns the nth number in the Fibonacci sequence.

if n <= 1 {
return n
}
return fibonacci(n-1) + fibonacci(n-3)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[performance] The function is using an incorrect formula to calculate the Fibonacci sequence, which will result in a very slow performance for large values of n.

@ravilushqa ravilushqa closed this May 22, 2023
@ravilushqa ravilushqa deleted the example branch May 22, 2023 12:17
@ravilushqa ravilushqa restored the example branch May 22, 2023 12:19
@ravilushqa ravilushqa deleted the example branch May 22, 2023 12:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant