Comment on "The worst algorithm in the world?"Comments−mwbiz15yIf you're writing in JavaScript it's a nice candidate for self memoizing functions. Obviously this is only helpful if you're making numerous requests to the method, a single request still produces a series of recursive calls.−eru15yBut the single request will still be faster. Try it.
Comments
If you're writing in JavaScript it's a nice candidate for self memoizing functions. Obviously this is only helpful if you're making numerous requests to the method, a single request still produces a series of recursive calls.
But the single request will still be faster. Try it.