Skip to content

Instantly share code, notes, and snippets.

@MichaelQQ
Created June 9, 2016 17:45
Show Gist options
  • Save MichaelQQ/4c1c86078048f1494925ef3e14539f52 to your computer and use it in GitHub Desktop.
Save MichaelQQ/4c1c86078048f1494925ef3e14539f52 to your computer and use it in GitHub Desktop.
const makeMemoFib = (f, m = {}) => {
return (n) => {
if (m[n]) {
return m[n]
}
m[n] = f(makeMemoFib(f, m))(n);
return m[n];
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment