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? |
|||
|
|
|
|
It's only 2 characters in APL, where most math functions are intrinsic:
Explanation: The question mark operator requests user input, and the monadic exclamation point applies the factorial function. Since the result isn't assigned to any variable or used in further calculations, it gets printed. APL isn't as popular as it used to be, but one of my customers still has some production APL applications. |
|||
|
|
PHP - 59 chars
|
|||
|
|
|
|
Lua45 charsSince Lua wasn't on here already.
|
|||
|
|
|
|
66 bytes of ARM assembly (thumb2). Not as short as many, but produces a bignum result. I'm sure that a few more bytes could be saved with some care.
|
|||
|
|
|
|
C# 41:
C# 49, decimal
C# int formatted:
|
|||
|
|
|
|
Clojure - 36 charsI'm learning Clojure right now (a dialect of Lisp), so I thought I'd do one in that.
To be called like so:
Two characters can be shaved off by binding an anonymous function to
|
|||
|
|
|
|
Skipping the obvious
for a total of 44 characters. This is a more efficient algorithm than the freshman year recursion example, which weights in at a mere 28 characters.
Of course, a list-based solution is even shorter (15 characters).
When golfing in Mathematica, you can save a lot of strokes by (ab)using its very terse syntax for pure functions and function application. |
|||
|
|
|
|
The most brief version in AS3 at 37 characters:
Which is the stripped down version of the more readable:
|
|||
|
|
|
|
Smalltalk-80
|
|||
|
|
|
|
R5RS w/ blatant whitespace abuse:
|
|||
|
|
|
|
In the J programming language, factorial is built-in, so:
but that's boring, so let's do it manually:
I guess this little-known language looks pretty unreadable, but here's the equivalent Haskell definition:
|
|||
|
|
|
|
C#: Slightly longer than the previous poster, but more useful as it is not as limited as with an int output, can resolve up to 28! instead of only 13! Also, v > 1 is easier on the eye than v < 2
|
|||
|
|
|
|
Scala:
|
|||
|
|
|
|
Someone posted 20 characters
|
|||
|
|
|
|
F#:
With spaces: 36 chars. Spaces removed, 30 chars. |
|||
|
|
|
|
25 characters in groovy: def f(n){n<=2?n:n*f(n-1)} |
|||
|
|
|
|
New python record: 28 chars
|
|||
|
|
|
|
Not the shortest, but certainly the least appropriate technique: C++ templates to compute factorial as part of the type signature of the class:
This will fail to produce valid answers for even moderate values of N. |
|||
|
|
|
|||
|
|
|
|
Language: dc, Char count:2323 chars version:
Edit: More readable (24 chars) version by Hudson
I should mention that dc is arbitrary precision calculator. |
|||
|
|
Perl 6:19 characters.
16 characters
If you wanted to call it like
Or for an anonymous code block
|
|||
|
|
28 characters in C:
Note that this uses the old-style default-int convention. |
|||
|
|
|
|||
|
|
30 characters in Python, an improvement of 8 over the other python.
|
|||
|
|
Probably the longest entry here, but brainf*ck is special in any case... :) So, here goes my entry at 93 characters:
Commented and indented:
EDIT: Seeing the other language codes do not include input code and just take the number as an argument, I too removed the input part and assumed the number was contained as argument in (0). Now it's reduced to 71 characters:
The outputting algorithm is non trivial so I decided not to remove it. |
||||
|
|
|
Perl, 32 characters
|
|||
|
|
|
|
OCaml:
|
|||
|
|
22 characters of Standard ML:
|
|||
|
|
66 characters of Windows
The recursive version was shaping up to be much larger. |
|||
|
|
|
|
9 bytes of i386 machine-code. Input is EAX, output is EAX.
PS: Anyone know why |
|||