| 1 | initial version |
def myfactorial(n):
if n == 1:
return [1]
else:
return myfactorial(n-1) + [n * myfactorial(n-1)[n-2]]
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.