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

Smalltalk-80

f||self=0 ifTrue:[^1].^self*f self-1.
link|flag
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

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 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

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.