Created
March 31, 2017 22:46
-
-
Save adamisntdead/de857a7ec0bf8fa227ecb987fae0905a to your computer and use it in GitHub Desktop.
Memoization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const factorial = (n) => { | |
if (n == 1) { | |
return 1 | |
} | |
return n * factorial(n - 1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment