Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save aershov24/9084f9c6d3bf5a340fb769349cfa99f5 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
const sqrt = Math.sqrt;
const pow = Math.pow;
const fibCalc = n => Math.round(
(1 / sqrt(5)) *
(
pow(((1 + sqrt(5)) / 2), n) -
pow(((1 - sqrt(5)) / 2), n)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment