Skip to content

Instantly share code, notes, and snippets.

@ElemarJR
Created November 2, 2012 23:48
Show Gist options
  • Select an option

  • Save ElemarJR/4005074 to your computer and use it in GitHub Desktop.

Select an option

Save ElemarJR/4005074 to your computer and use it in GitHub Desktop.
var fibonacci = _.memoize(function(n) {
return n < 2 ? n : fibonacci(n - 1) + fibonacci(n - 2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment