Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions.
What is the shortest (in characters) way to write a factorial function?
|
5
|
Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions. What is the shortest (in characters) way to write a factorial function? |
|||
|
|
|
|
Java:
Identical to C. |
|||
|
|
|
|
Ruby, 26 characters:
|
|||
|
|
34 in python:
34 in C:
|
|||
|
|
40 in python without trying too hard.
EDIT: Make that 38 . I guess I didn't need the extra parens above.. |
|||
|
|
|
|
I tried to get creative with using a lambda instead of a regular function to make it smaller. However, you can't recurse on an anonymous type, so I get this:
41 characters. |
|||
|
|
Haskell:
17 characters, 20 with reasonable whitespace. As a named function:
22 characters. Without using
26 characters These (largely equivalent) implementations have no stack overflow or integer overflow errors. Compiled with ghc, this calculates and prints all 35661 digits of 10000! in 0.11s and all 456575 digits of 100000! in 11.145s on my two year old laptop. Of course, there are doubtless faster algorithms, but that's not bad performance for a naive solution. |
|||
|
|
My attempt, using C#:
38 Characters, counting whitespace. For those who don't understand the ? operator, it works like this:
So, in my case, it collapses this:
|
||||
|