define f(x) { if (x>1) { if (f[x]) { return (f[x]) } f[x] = (x * f(x-1)) return (f[x]) } return (1)}
Post a Comment
No comments:
Post a Comment