HVM
HVM copied to clipboard
docs: Update Fibonacci sequence in README guide
Pull Request: Update Fibonacci sequence documentation in README
Description
This pull request addresses a documentation issue in the README.md file related to the Fibonacci sequence. The base cases were incorrectly stated as Fib(0) = 1 and Fib(1) = 1; this has been corrected to Fib(0) = 0 and Fib(1) = 1 to accurately reflect the Fibonacci sequence.
Changes Made
- Updated the Fibonacci sequence base cases in the README.md guide file.
Why?
The documentation inaccurately represented the base cases for the Fibonacci sequence. Correcting this ensures that users have accurate information when referring to the README file.