fib(0) should be zero , not 1 as in sample code #101
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fib(0) should be zero , not 1 as in sample code.
Overview
fib(0) should be zero , not 1 as in sample code
Details :
just tested sample code and found answer incorrect because fib(0) = 1 in sample code, it should be zero instead.
e.g. from sample code Fib(0) = 1 but it should be zero
def fib(x):
if x == 0:
return 0 #instead of 1 as in orig code!
References
see example at https://www.mathsisfun.com/numbers/fibonacci-sequence.html or https://www.geeksforgeeks.org/python-program-for-program-for-fibonacci-numbers-2/
Blocked by
N/A