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 0 vote down

The most brief version in AS3 at 37 characters:

function f(i){return i<1?1:i*f(i-1);}

Which is the stripped down version of the more readable:

function factorial(i:Number):Number{return (i<1) ? 1 : i * factorial(i-1);}
link|flag
vote up 0 vote down

Skipping the obvious n! in Mathematica, we can do it recursively, like so:

If[#1<=#2,#1,#0[#1,2#2]#0[#1-#2,2#2]]&[#,1]&

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.

If[#1<1,1,#1#0[#1-1]]&[#,0]&

Of course, a list-based solution is even shorter (15 characters).

Times@@Range@#&

When golfing in Mathematica, you can save a lot of strokes by (ab)using its very terse syntax for pure functions and function application.

link|flag
vote up 0 vote down

Clojure - 36 chars

I'm learning Clojure right now (a dialect of Lisp), so I thought I'd do one in that.

(defn ![n](apply *(range 1(inc n))))

To be called like so: (! n)

* throws errors for ranges and lazy seqs, which is why apply was added.

Two characters can be shaved off by binding an anonymous function to !:

(def ! #(apply *(range 1(inc %))))
link|flag
vote up 0 vote down

C# 41:

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

C# 49, decimal

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

C# int formatted:

Func<int,int> f = null;
f = (x) => (x < 2) ? 1 : x * f(x-1);
link|flag
vote up 2 vote down

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.

// uint32_t factorial(uint32_t n, uint32_t *result, uint32_t length);
// 
// stores n! in the buffer result as a little-endian bignum.  length is
// size of the buffer in (32-bit) words.  It is the caller's responsibility
// to allocate and free the result buffer.  If the buffer is not large
// enough to contain n!, 0 is returned.  On successful exit, the return
// value is the number of (32-bit) words of the buffer that were used to
// store the result.

_factorial:
    push   {r4-r7}
    tst     r2,     r2
    beq     Lerror
    movs    r3,     #1
    str     r3,    [r1]
    tst     r0,     r0
    beq     Ldone
Lloop:
    eors    r6,     r6
    movs    r7,     r3
Lmultiply:
    movs    r5,     r6
    eors    r6,     r6
    ldr     r4,    [r1]
    umlal   r5, r6, r0, r4
    str     r5,    [r1], #4
    subs    r7,     $1
    bne     Lmultiply
    tst     r6,     r6
    beq     LnoOverflow
    adds    r3,     $1
    cmp     r3,     r2
    bhi     Lerror
    str     r6,    [r1], #4
LnoOverflow:
    sub     r1, r1, r3, lsl #2
    subs    r0,     $1
    bne     Lloop
Ldone:
    mov     r0,     r3
Lexit:
    pop    {r4-r7}
    bx      lr
Lerror:
    eors    r0,     r0
    b       Lexit
link|flag
vote up 0 vote down

Lua

45 chars

Since Lua wasn't on here already.

function f(i)return i>0 and i*f(i-1)or 1 end
link|flag
vote up 0 vote down

PHP - 59 chars

function f($n){return array_reduce(range(1,$n),'bcmul',1);}
link|flag
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.