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 #3

Closed
wants to merge 1 commit into from
Closed

Example #3

wants to merge 1 commit into from

Conversation

ravilushqa
Copy link
Owner

@ravilushqa ravilushqa commented Apr 22, 2023

Description

Fix fibonacci sequence logic to correctly return the n-th element. Currently, the function is incorrectly recursing on n-3 instead of n-2. This leads to incorrect results for larger values of n.

Changes

  • Fix Fibonacci sequence logic in fibonacci.go file to correctly return the n-th element.

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.

Overall, the code patch adds a recursive function to calculate the nth number in the Fibonacci sequence. Here are a few points to consider for code review:

  • Naming: The function name and package name follow Go's naming conventions, which is good.
  • Function signature: The function takes an integer input and returns an integer output. It would be helpful to add comments describing what exactly the function does and what inputs it expects.
  • Logic: There is a bug in the code. The Fibonacci sequence is formed by adding the previous two numbers, so the last line of the function should be "return fibonacci(n-1) + fibonacci(n-2)" instead of "return fibonacci(n-1) + fibonacci(n-3)". This bug causes the function to return incorrect values for n >= 3.
  • Performance: Recursive Fibonacci computations can become very slow for large values of n, since the function makes two recursive calls for each call. Consider adding memoization or using an iterative algorithm to improve performance.
  • Documentation and testing: Adding documentation and tests would increase the reliability and maintainability of the code.

Overall, the code could benefit from further improvement, but it provides a basic implementation of the Fibonacci sequence computation.

@ravilushqa ravilushqa closed this May 7, 2023
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