Name: Anonymous 2009-11-04 1:17
Come up with variations of your favorite toy problems. The more obfuscated the better.
I'll start with a simple one:
I'll start with a simple one:
def factorial(n): return reduce(lambda x,y: x*y, range(1,n
+1)) if n > 1 else 1