Skip to content

Instantly share code, notes, and snippets.

@aershov24
Created October 13, 2020 05:28
Show Gist options
  • Select an option

  • Save aershov24/d8bdb1eecc472526ef426ddd4788c21c to your computer and use it in GitHub Desktop.

Select an option

Save aershov24/d8bdb1eecc472526ef426ddd4788c21c to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
private static long fibonacci(int n) {
double pha = pow(1 + sqrt(5), n);
double phb = pow(1 - sqrt(5), n);
double div = pow(2, n) * sqrt(5);
return (long)((pha - phb) / div);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment