vote up 2 vote down star
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?

flag
show 5 more comments

37 Answers

prev 1 2
vote up 1 vote down

Java:

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

Identical to C.

link|flag
vote up 2 vote down

Ruby, 26 characters:

def f i;i<2?1:i*f(i-1);end
link|flag
show 1 more 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
show 4 more comments
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
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
show 1 more comment
vote up 10 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
show 3 more comments
vote up 3 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
3  
Downvoted for explaining ternary operation – Kevin Oct 27 '08 at 6:06
show 7 more comments
prev 1 2

Your Answer

Get an OpenID
or

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