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?
|
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? | ||||
|
feedback
|
|
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. | |||||||||
feedback
|
|
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. | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
9 bytes of i386 machine-code. Input is EAX, output is EAX.
PS: Anyone know why | ||||
|
feedback
|
|
66 characters of Windows
The recursive version was shaping up to be much larger. | ||||
|
feedback
|
|
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.
| ||||
|
feedback
|
|
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:
| |||||||||||||
feedback
|
|
30 characters in Python, an improvement of 8 over the other python.
| ||||
|
feedback
|
Perl 6:19 characters.
16 characters
If you wanted to call it like
Or for an anonymous code block
| ||||
|
feedback
|
|
Ruby, 26 characters:
| ||||
|
feedback
|
|
| ||||
|
feedback
|
|
34 in python:
34 in C:
| ||||
|
feedback
|
Language: dc, Char count:2323 chars version:
Edit: More readable (24 chars) version by Hudson
I should mention that dc is arbitrary precision calculator. | ||||
|
feedback
|
|
F#:
With spaces: 36 chars. Spaces removed, 30 chars. | |||||
feedback
|
|
Someone posted 20 characters
| ||||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
Skipping the obvious
for a total of 40 characters. This is a more efficient algorithm than the freshman year recursion example, which weights in at a mere 26 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. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
40 in python without trying too hard.
EDIT: Make that 38 . I guess I didn't need the extra parens above.. | ||||
|
feedback
|
|
22 characters of Standard ML:
| ||||
|
feedback
|
|
OCaml:
| ||||
|
feedback
|
| ||||
|
feedback
|
|
28 characters in C:
Note that this uses the old-style default-int convention. | ||||
|
feedback
|
|
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
| ||||
|
feedback
|