Skip to content

Instantly share code, notes, and snippets.

@aershov24
Created October 13, 2020 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aershov24/62665bda7fe17daf5c19a42917c3d27a to your computer and use it in GitHub Desktop.
Save aershov24/62665bda7fe17daf5c19a42917c3d27a to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
double fibbonaci(int n){
double prev=0d, next=1d, result=0d;
for (int i = 0; i < n; i++) {
result=prev+next;
prev=next;
next=result;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment