Skip to content

Instantly share code, notes, and snippets.

@eengineergz
Created February 27, 2021 04:49
Show Gist options
  • Save eengineergz/c15feb228a51a3543625009c8fd0b6de to your computer and use it in GitHub Desktop.
Save eengineergz/c15feb228a51a3543625009c8fd0b6de to your computer and use it in GitHub Desktop.
function fastFib(n, memo = {}) {
if (n in memo) return memo[n];
if (n === 1 || n === 2) return 1;
memo[n] = fastFib(n - 1, memo) + fastFib(n - 2, memo);
return memo[n];
}
fastFib(6); // => 8
fastFib(50); // => 12586269025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment