Created
September 9, 2019 15:12
-
-
Save vlio20/07daff8223fb032169c07a10e77c1113 to your computer and use it in GitHub Desktop.
memoize
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
class Fibonacci { | |
@memoize(10000) | |
fibo(n: number): number { | |
//some code | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment