vote up 1 vote down
star
3

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?

flag
How should correctness factor in here? Many of these solutions use signed machine integers, failing for any input > 12 on 32 bit machines and any input > 20 on 64 bit machines. Getting the answer right in at most 20 cases seems subpar. – Peter Burns Oct 26 at 23:22
There is another question that asks for any/all code examples of Factorial. stackoverflow.com/questions/23930/… As far as I am concerned they should both stay open. – Brad Gilbert Oct 26 at 23:29
The top-most voted answer, APL lacks bignums as far as I know, but its derivative J has them. The second, Haskell, defaults to bignums by default -- as the answer states, it easily calculates 100000!. – ephemient Oct 27 at 21:07
The dc answer also supports arbitrary precision. – Hudson Jan 2 at 20:27
the bc answer too. yay! – litb Jan 2 at 22:04
add comment

28 Answers

vote up 7 vote down
check

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.

link|flag
You haven't actually written a factorial function though, innit? – Menkboy Oct 26 at 12:19
Can you provide an explanation for this? – Claudiu Oct 27 at 4:13
'!' works in J, too, though requesting user input isn't as succinct as '?' (which is taken for random): '_".}:1!:1<3'. If you don't want to use '!', '*/@(1+i.)' does the same in J -- I imagine '*/⍳' works in APL, but I don't have an APL interpreter to test it on. – ephemient Oct 27 at 15:03
Hardly making the brain tick... ;) – Ray Booysen Jan 4 at 18:44
add comment
vote up 14 vote down

Probably the longest entry here, but brainf*ck is special in any case... :)

So, here goes my entry at 93 characters:

,>++++++[<-------->-]<[->+>+<<]>>->>+<<<[>[<[->[-<<+>>>+<]>[-<+>]<<]<[->+<]>>-]<.>>>-]>>>[.-]

Commented and indented:

, 
>++++++ Put 6 in next cell
[<-------->-] Subtract 8 six times to subtract 48
<
[->+>+<<]  Move (0) to (1) and (2)
>>-  Decrement one from (2) as we want to multiply n * n minus 1
>>+  Store 1 in (4) to allow distinguishing 0 separately
<<< Go to (1)
[   A makeshift if($_ != 0)
  >[   While (2) 
    <[   While(1)
      - Subtract one from (1) for multiplication by repeated addition
      >[-<<+>>>+<] Add (2) to (0) and (3)
      >[-<+>] Move data from (3) to (2)
      <<
    ]  
    <[->+<] Copy (0) to (1) for next round of multiplication
    >>- Decrement (2) to go to n minus 2 and so on
  ]
  <.>>>-  Print output from (1) and make (4) = 0 to stop the if
]
>>>[.-]  If we're at (4) (and it is nonzero) we have a 0 as input; so print 1 and stop;

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.

link|flag
+1 for commented brainf*ck code - I never understood BF so clearly until now (where 'clearly' is relatively defined vs. what I used to know about it) – David Jan 2 at 20:41
add comment
vote up 6 vote down

Haskell:

\n->product[1..n]

17 characters, 20 with reasonable whitespace. As a named function:

fac n = product [1..n]

22 characters. Without using product:

fac n = foldr (*) 1 [1..n]

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.

link|flag
So what is product[1..0]? – tvanfosson Oct 26 at 4:00
It's 1 because [1..0] is the empty list – Peter Burns Oct 26 at 4:03
add comment
vote up 5 vote down

9 bytes of i386 machine-code. Input is EAX, output is EAX.

#AT&T syntax
mov %eax, %ebx
again:
    dec %ebx
    .byte 0x74, 4    #jz (short) done
    mul %ebx
    .byte 0xEB, -7   #jmp (short) again
done:

PS: Anyone know why as won't genetrate short jumps for me?

link|flag
add comment
vote up 5 vote down

Not the shortest, but certainly the least appropriate technique: C++ templates to compute factorial as part of the type signature of the class:

#include <iostream>

template <int N>
struct Factorial
{
    enum { value = N * Factorial<N - 1>::value };
};

template <>
struct Factorial<0>
{
    enum { value = 1 };
};

int main()
{
        std::cout << "4!=" << Factorial<4>::value << std::endl;
}

This will fail to produce valid answers for even moderate values of N.

link|flag
Hah! I read the output as 4 != 24, which is true, of course. xD – strager Jan 2 at 20:41
Wow, really good! – Eduardo León Jan 3 at 6:29
This one is even more interesting. It uses templates to determine the primality of 13: homepage.mac.com/sigfpe/Computing/… – Eduardo León Jan 3 at 6:37
We have it easy now that most compilers accept ints as template parameters instead of having to that successor stuff! – Eclipse Feb 5 at 4:50
add comment
vote up 3 vote down

66 characters of Windows cmd.exe batch language (Win2K or later only):

set r=1
for /l %%i in (1,1,%1) do call set/a r=%%r%%*%%i
echo %r%

The recursive version was shaping up to be much larger.

link|flag
add comment
vote up 2 vote down

My attempt, using C#:

int f(int v){return v<2?1:v*f(v-1);}

38 Characters, counting whitespace.

For those who don't understand the ? operator, it works like this:

  (Condition) ? (Return this if true) : (Return this if false)

So, in my case, it collapses this:

if (v<2)
{
    return 1;
}
else
{
    return v*f(v-1);
}
link|flag
Interestingly, that's the same as my attempts in both C and C++! – 1800 INFORMATION Oct 26 at 4:01
Imagine that :), For what its worth, I have posted another one that is definitely not compatible with C/C++ :D – FlySwat Oct 26 at 4:06
You can shorten the code by doing: {return v?v*f(v-1):1;} – Jonathan Leffler Oct 27 at 0:40
Downvoted for explaining ternary operation – Kevin Oct 27 at 6:06
what the fuck is up with the question mark??!? – Shawn Oct 27 at 6:08
add / show 3 more comments
vote up 2 vote down

Ruby, 26 characters:

def f i;i<2?1:i*f(i-1);end
link|flag
26 chars = length of your max haskell impl – Alan Jan 2 at 21:51
add comment
vote up 1 vote down

34 in python:

def f(n):return n and n*f(n-1)or 1

34 in C:

int f(int n){return n?n*f(n-1):1;}
link|flag
Nice job on the C one, its lack of a native boolean type actually is handy for once. – FlySwat Oct 26 at 4:42
Does it work in C#? I suppose so but I'm not sure – Federico Ramponi Oct 26 at 4:45
Nope, you would need to do (bool)n, otherwise it complains about invalid cast. – FlySwat Oct 26 at 4:46
Or in my case, use a conditional expression (n<2). – FlySwat Oct 26 at 4:47
add comment
vote up 1 vote down

30 characters in Python, an improvement of 8 over the other python.

f=lambda n:n<2and 1or n*f(n-1)
link|flag
29: f=lambda n:n and n*f(n-1)or 1 – recursive Dec 16 at 22:49
add comment
vote up 1 vote down
def f(n): return reduce(lambda x,y: x*y,range(1,n+1))
link|flag
Might want to specify that this is Python. – ephemient Nov 1 at 23:04
add comment
vote up 1 vote down

Language: dc, Char count:23

23 chars version:

dc -e'?d[1-dsa*lad1<b]dsbxszp' <<<1000

Edit: More readable (24 chars) version by Hudson

dc -e'?[q]sQ[d1=Qd1-lFx*]dsFxp' <<<1000

I should mention that dc is arbitrary precision calculator.

link|flag
I find this more readable since F only requires the one argument on the stack: '?[q]sQ[d1=Qd1-lFx*]dsFxp'. Don't forget to mention that dc supports arbitrary precision, so it doesn't matter how big the input is. – Hudson Jan 2 at 19:49
I'm not familiar with this sort of recursion what you used. I should learn to use it. Thanks for advice. – Hynek -Pichi- Vychodil Jan 2 at 20:13
The '[q]sQ' create a macro named Q that emulates an early return; q will break out of two levels of function calls. I use that idiom in most of my dc scripts. – Hudson Jan 2 at 20:30
add comment
vote up 1 vote down

Perl 6:

19 characters.

sub f($n){[*]1..$n}

16 characters

sub f{[*]1..$^n}

If you wanted to call it like '5!'
30 characters.

sub postfix:<!>($n){[*]1..$n}

Or for an anonymous code block
11 characters.

{[*]1..$^n}

say {[*]1..$^n}(5) # 120
link|flag
Rakudo now supports the postfix:<!> variant perlgeek.de/blog-en/perl-6/… – Brad Gilbert May 14 at 22:24
add comment
vote up 0 vote down

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:

Func<int,int>f=null;f=v=>v<2?1:v*f(v-1);

41 characters.

link|flag
nice, switching around your condition to v>1?v*f(v-1):1 reads a little easier and changing your output to decimal would make it more useful for higher factorials...although still only good to about 27, but better than the 13 that int reliably works for. – balabaster Jan 4 at 18:31
add comment
vote up 0 vote down

40 in python without trying too hard.

def f(n):return (1 if n<2 else n*f(n-1))

EDIT: Make that 38 . I guess I didn't need the extra parens above..

link|flag
add comment
vote up 0 vote down

22 characters of Standard ML:

fun f 0=1|f n=n*f(n-1)
link|flag
This isn't tail recursive. Does this run out of stack space, or are there Standard ML compilers which will rewrite it with an accumulator? – Peter Burns Oct 27 at 7:45
Question: How many solutions here are tail-recursive? (Answer: Not many.) – ephemient Nov 1 at 23:06
My function doesn't use large integers, so f(13) raises an (integer) Overflow exception, nowhere near a stack overflow. SML/NJ supposedly uses the heap instead of a call stack, so you can probably run out of heap if you change "0" to "(0:LargeInt.int)" and compute something like f(1000000). – bk1e Nov 2 at 16:36
add comment
vote up 0 vote down

OCaml:

let rec f n = if n=0 then 1 else n*f(n-1);;
link|flag
You can save 5 characters with: let rec f= function 0->1|n->n*f(n-1);; – huitseeker Jun 29 at 7:44
add comment
vote up 0 vote down

Perl, 32 characters

sub f{$_[0]?$_[0]*f($_[0]-1):1;}
link|flag
add comment
vote up 0 vote down

28 characters in C:

F(n){return n>1?n*F(n-1):1;}

Note that this uses the old-style default-int convention.

link|flag
You can trim two characters off that: replace "n>1" with "n". You recurse one more time, and lose the questionable ability to handle negative input, but it's two whole characters off. – David Thornley Jan 2 at 21:00
add comment
vote up 0 vote down

Java:

int f(int n){return n>1?f(n-1)*n:1;}

Identical to C.

link|flag
add comment
vote up 0 vote down

25 characters in groovy: def f(n){n<=2?n:n*f(n-1)}

link|flag
add comment
vote up 0 vote down

F#:

let f n = [1..n] |> Seq.fold ( * ) 1

With spaces: 36 chars. Spaces removed, 30 chars.

link|flag
add comment
vote up 0 vote down

Someone posted dc. I'm going to post bc, paste & seq:

20 characters

seq $n|paste -sd*|bc
link|flag
add comment
vote up 0 vote down

Scala:

def f(n:Int)=(1/:(1 to n))(_*_)
link|flag
add comment
vote up 0 vote down

New python record: 28 chars

f=lambda x:+(x<2)or x*f(x-1)
link|flag
add comment
vote up 0 vote down

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

decimal f(int v) { return v > 1 ? v * f(v - 1) : 1; }
link|flag
add comment
vote up 0 vote down

In the J programming language, factorial is built-in, so:

fact=:!

but that's boring, so let's do it manually:

fact=:*/@:(1+i.)

I guess this little-known language looks pretty unreadable, but here's the equivalent Haskell definition:

fact = foldr1 (*) . \n -> [1..n]
link|flag
add comment
vote up -1 vote down

Language: Golfscript, Char count: 10

My first script in golfscript at all:

 ,{1+}%{*}*
link|flag
add comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.