Skip to content

Instantly share code, notes, and snippets.

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