Code Golf: Factorials - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T02:30:41Zhttp://stackoverflow.com/feeds/question/237496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/237496/code-golf-factorials2Code Golf: FactorialsFlySwat2008-10-26T03:46:27Z2009-10-31T09:33:21Z
<p>Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions.</p>
<p>What is the shortest (in characters) way to write a factorial function?</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237505#2375053Answer by FlySwat for Code Golf: FactorialsFlySwat2008-10-26T03:51:11Z2008-10-26T04:40:13Z<p>My attempt, using C#:</p>
<pre><code>int f(int v){return v<2?1:v*f(v-1);}
</code></pre>
<p>38 Characters, counting whitespace.</p>
<p>For those who don't understand the ? operator, it works like this:</p>
<pre><code> (Condition) ? (Return this if true) : (Return this if false)
</code></pre>
<p>So, in my case, it collapses this:</p>
<pre><code>if (v<2)
{
return 1;
}
else
{
return v*f(v-1);
}
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237519#23751910Answer by Peter Burns for Code Golf: FactorialsPeter Burns2008-10-26T03:58:05Z2008-10-26T04:19:48Z<p>Haskell:</p>
<pre><code>\n->product[1..n]
</code></pre>
<p>17 characters, 20 with reasonable whitespace. As a named function:</p>
<pre><code>fac n = product [1..n]
</code></pre>
<p>22 characters. Without using <code>product</code>:</p>
<pre><code>fac n = foldr (*) 1 [1..n]
</code></pre>
<p>26 characters</p>
<p>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.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237520#2375200Answer by FlySwat for Code Golf: FactorialsFlySwat2008-10-26T03:59:39Z2008-10-26T03:59:39Z<p>I tried to get creative with using a lambda instead of a regular function to make it smaller.</p>
<p>However, you can't recurse on an anonymous type, so I get this:</p>
<pre><code>Func<int,int>f=null;f=v=>v<2?1:v*f(v-1);
</code></pre>
<p>41 characters.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237550#2375500Answer by Eugene M for Code Golf: FactorialsEugene M2008-10-26T04:19:04Z2008-10-26T04:24:17Z<p>40 in python without trying too hard.</p>
<pre><code>def f(n):return (1 if n<2 else n*f(n-1))
</code></pre>
<p>EDIT: Make that 38 . I guess I didn't need the extra parens above..</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237565#23756518Answer by Ken Paul for Code Golf: FactorialsKen Paul2008-10-26T04:31:03Z2008-10-27T04:56:46Z<p>It's only 2 characters in APL, where most math functions are intrinsic:</p>
<pre><code>?!
</code></pre>
<p>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.</p>
<p>APL isn't as popular as it used to be, but one of my customers still has some production APL applications.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237566#2375661Answer by Federico Ramponi for Code Golf: FactorialsFederico Ramponi2008-10-26T04:31:19Z2008-10-26T04:47:06Z<p>34 in python:</p>
<pre><code>def f(n):return n and n*f(n-1)or 1
</code></pre>
<p>34 in C:</p>
<pre><code>int f(int n){return n?n*f(n-1):1;}
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237576#2375762Answer by Peter Burns for Code Golf: FactorialsPeter Burns2008-10-26T04:46:53Z2008-10-26T04:46:53Z<p>Ruby, 26 characters:</p>
<pre><code>def f i;i<2?1:i*f(i-1);end
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237612#2376121Answer by Skip Head for Code Golf: FactorialsSkip Head2008-10-26T05:26:36Z2009-01-02T20:36:22Z<p>Java:</p>
<pre><code>int f(int n){return n>1?f(n-1)*n:1;}
</code></pre>
<p>Identical to C.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237622#2376226Answer by Menkboy for Code Golf: FactorialsMenkboy2008-10-26T05:38:50Z2008-10-26T05:38:50Z<p>9 bytes of i386 machine-code. Input is EAX, output is EAX.</p>
<pre><code>#AT&T syntax
mov %eax, %ebx
again:
dec %ebx
.byte 0x74, 4 #jz (short) done
mul %ebx
.byte 0xEB, -7 #jmp (short) again
done:
</code></pre>
<p>PS: Anyone know why <code>as</code> won't genetrate short jumps for me?</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237638#2376385Answer by bk1e for Code Golf: Factorialsbk1e2008-10-26T05:56:38Z2008-10-26T06:05:45Z<p>66 characters of Windows <code>cmd.exe</code> batch language (Win2K or later only):</p>
<pre><code>set r=1
for /l %%i in (1,1,%1) do call set/a r=%%r%%*%%i
echo %r%
</code></pre>
<p>The recursive version was shaping up to be much larger.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/237646#2376460Answer by bk1e for Code Golf: Factorialsbk1e2008-10-26T06:05:31Z2008-10-26T06:05:31Z<p>22 characters of Standard ML:</p>
<pre><code>fun f 0=1|f n=n*f(n-1)
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237648#2376480Answer by aaront for Code Golf: Factorialsaaront2008-10-26T06:10:35Z2008-10-26T06:10:35Z<p>OCaml:</p>
<pre><code>let rec f n = if n=0 then 1 else n*f(n-1);;
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237746#2377461Answer by Matthew Scharley for Code Golf: FactorialsMatthew Scharley2008-10-26T08:40:50Z2008-10-26T11:18:59Z<p>Perl, 32 characters</p>
<pre><code>sub f{$_[0]?$_[0]*f($_[0]-1):1;}
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/237790#23779021Answer by sundar for Code Golf: Factorialssundar2008-10-26T09:34:57Z2008-10-27T06:02:00Z<p>Probably the longest entry here, but brainf*ck is special in any case... :)</p>
<p>So, here goes my entry at 93 characters:</p>
<pre><code>,>++++++[<-------->-]<[->+>+<<]>>->>+<<<[>[<[->[-<<+>>>+<]>[-<+>]<<]<[->+<]>>-]<.>>>-]>>>[.-]
</code></pre>
<p>Commented and indented:</p>
<pre><code>,
>++++++ 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;
</code></pre>
<p>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:</p>
<pre><code>[->+>+<<]>>->>+<<<[>[<[->[-<<+>>>+<]>[-<+>]<<]<[->+<]>>-]<.>>>-]>>>[.-]
</code></pre>
<p>The outputting algorithm is non trivial so I decided not to remove it.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/239067#2390673Answer by Claudiu for Code Golf: FactorialsClaudiu2008-10-27T04:17:47Z2008-10-27T04:17:47Z<p><b>30 characters</b> in Python, an improvement of 8 over the other python.</p>
<pre><code>f=lambda n:n<2and 1or n*f(n-1)
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/239285#2392850Answer by esiegel for Code Golf: Factorialsesiegel2008-10-27T07:46:45Z2008-10-27T07:46:45Z<pre><code>def f(n): return reduce(lambda x,y: x*y,range(1,n+1))
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/288654#2886540Answer by Adam Rosenfield for Code Golf: FactorialsAdam Rosenfield2008-11-13T22:53:54Z2008-11-13T22:53:54Z<p>28 characters in C:</p>
<pre><code>F(n){return n>1?n*F(n-1):1;}
</code></pre>
<p>Note that this uses the old-style default-int convention.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/309833#3098332Answer by Brad Gilbert for Code Golf: FactorialsBrad Gilbert2008-11-21T19:10:12Z2009-01-03T06:23:04Z<h2>Perl 6:</h2>
<p>19 characters.</p>
<pre><code>sub f($n){[*]1..$n}
</code></pre>
<p>16 characters</p>
<pre><code>sub f{[*]1..$^n}
</code></pre>
<p>If you wanted to call it like <code>'5!'</code><br/>
30 characters.</p>
<pre><code>sub postfix:<!>($n){[*]1..$n}
</code></pre>
<p>Or for an anonymous code block<br/>
11 characters.</p>
<pre><code>{[*]1..$^n}
say {[*]1..$^n}(5) # 120
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/407806#4078061Answer by Hynek -Pichi- Vychodil for Code Golf: FactorialsHynek -Pichi- Vychodil2009-01-02T19:32:00Z2009-01-02T20:22:48Z<h3>Language: dc, Char count:23</h3>
<p>23 chars version:</p>
<pre><code>dc -e'?d[1-dsa*lad1<b]dsbxszp' <<<1000
</code></pre>
<p><strong>Edit:</strong> More readable (24 chars) version by <a href="http://stackoverflow.com/users/14105/hudson">Hudson</a></p>
<pre><code>dc -e'?[q]sQ[d1=Qd1-lFx*]dsFxp' <<<1000
</code></pre>
<p>I should mention that dc is arbitrary precision calculator.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/407876#4078761Answer by Hynek -Pichi- Vychodil for Code Golf: FactorialsHynek -Pichi- Vychodil2009-01-02T20:00:46Z2009-01-02T20:00:46Z<h3>Language: <a href="http://www.golfscript.com/golfscript/index.html" rel="nofollow">Golfscript</a>, Char count: 10</h3>
<p>My first script in golfscript at all:</p>
<pre><code> ,{1+}%{*}*
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/407957#4079577Answer by Hudson for Code Golf: FactorialsHudson2009-01-02T20:37:45Z2009-01-02T20:37:45Z<p>Not the shortest, but certainly the least appropriate technique: <a href="http://en.wikipedia.org/wiki/Template_metaprogramming#Compile-time_class_generation" rel="nofollow">C++ templates to compute factorial</a> as part of the type signature of the class:</p>
<pre><code>#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;
}
</code></pre>
<p>This will fail to produce valid answers for even moderate values of N.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/408003#4080030Answer by Triptych for Code Golf: FactorialsTriptych2009-01-02T20:58:51Z2009-01-02T22:24:12Z<h3>New python record: 28 chars</h3>
<pre><code>f=lambda x:+(x<2)or x*f(x-1)
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/408099#4080990Answer by Ray Tayek for Code Golf: FactorialsRay Tayek2009-01-02T21:44:46Z2009-01-02T21:44:46Z<p>25 characters in groovy: def f(n){n<=2?n:n*f(n-1)}</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/408114#4081140Answer by Juliet for Code Golf: FactorialsJuliet2009-01-02T21:50:04Z2009-01-02T21:50:04Z<p>F#:</p>
<pre><code>let f n = [1..n] |> Seq.fold ( * ) 1
</code></pre>
<p>With spaces: 36 chars. Spaces removed, 30 chars.</p>
http://stackoverflow.com/questions/237496/code-golf-factorials/408126#4081260Answer by litb for Code Golf: Factorialslitb2009-01-02T21:57:34Z2009-01-02T21:57:34Z<p>Someone posted <code>dc</code>. I'm going to post <code>bc, paste & seq</code>:</p>
<p><strong>20 characters</strong></p>
<pre><code>seq $n|paste -sd*|bc
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/408128#4081280Answer by Germán for Code Golf: FactorialsGermán2009-01-02T22:00:29Z2009-01-02T22:00:29Z<p>Scala:</p>
<pre><code>def f(n:Int)=(1/:(1 to n))(_*_)
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/411461#4114610Answer by BenAlabaster for Code Golf: FactorialsBenAlabaster2009-01-04T18:41:51Z2009-01-04T18:41:51Z<p><strong>C#</strong>:</p>
<p>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! </p>
<p>Also, v > 1 is easier on the eye than v < 2</p>
<pre><code>decimal f(int v) { return v > 1 ? v * f(v - 1) : 1; }
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/514601#5146011Answer by Uros Dimitrijevic for Code Golf: FactorialsUros Dimitrijevic2009-02-05T04:42:00Z2009-02-05T04:42:00Z<p>In the <a href="http://en.wikipedia.org/wiki/J_%28programming_language%29" rel="nofollow">J programming language</a>, factorial is built-in, so:</p>
<pre><code>fact=:!
</code></pre>
<p>but that's boring, so let's do it manually:</p>
<pre><code>fact=:*/@:(1+i.)
</code></pre>
<p>I guess this little-known language looks pretty unreadable, but here's the equivalent Haskell definition:</p>
<pre><code>fact = foldr1 (*) . \n -> [1..n]
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467152#14671520Answer by stafford rootbeer for Code Golf: Factorialsstafford rootbeer2009-09-23T16:27:11Z2009-09-23T16:27:11Z<p>R5RS w/ blatant whitespace abuse:</p>
<pre><code>(define(f x)(if(= x 0)1(* x(f(- x 1)))))
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467208#14672080Answer by Stafford Rootbeer for Code Golf: FactorialsStafford Rootbeer2009-09-23T16:38:09Z2009-09-23T16:38:09Z<p>Smalltalk-80</p>
<pre><code>f||self=0 ifTrue:[^1].^self*f self-1.
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467332#14673320Answer by JStriedl for Code Golf: FactorialsJStriedl2009-09-23T16:59:31Z2009-09-23T16:59:31Z<p>The most brief version in AS3 at 37 characters:</p>
<pre><code>function f(i){return i<1?1:i*f(i-1);}
</code></pre>
<p>Which is the stripped down version of the more readable:</p>
<pre><code>function factorial(i:Number):Number{return (i<1) ? 1 : i * factorial(i-1);}
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467436#14674360Answer by Pillsy for Code Golf: FactorialsPillsy2009-09-23T17:17:24Z2009-09-24T18:19:46Z<p>Skipping the obvious <code>n!</code> in Mathematica, we can do it recursively, like so:</p>
<pre><code>If[#1<=#2,#1,#0[#1,2#2]#0[#1-#2,2#2]]&[#,1]&
</code></pre>
<p>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. </p>
<pre><code>If[#1<1,1,#1#0[#1-1]]&[#,0]&
</code></pre>
<p>Of course, a list-based solution is even shorter (15 characters).</p>
<pre><code>Times@@Range@#&
</code></pre>
<p>When golfing in Mathematica, you can save a lot of strokes by (ab)using its very terse syntax for pure functions and function application. </p>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467688#14676880Answer by nilamo for Code Golf: Factorialsnilamo2009-09-23T18:11:50Z2009-09-23T18:17:32Z<h2>Clojure - 36 chars</h2>
<p>I'm learning Clojure right now (a dialect of Lisp), so I thought I'd do one in that.</p>
<pre><code>(defn )))
</code></pre>
<p>To be called like so: <code>(! n)</code></p>
<p><code>*</code> throws errors for ranges and lazy seqs, which is why apply was added.</p>
<p>Two characters can be shaved off by binding an anonymous function to <code>!</code>:</p>
<pre><code>(def ! #(apply *(range 1(inc %))))
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1467903#14679030Answer by Dykam for Code Golf: FactorialsDykam2009-09-23T18:45:54Z2009-09-23T18:45:54Z<h2>C# 41:</h2>
<pre><code>Func<int,int> f=null;f=x=>x<2?1:x*f(x-1);
</code></pre>
<h2>C# 49, decimal</h2>
<pre><code>Func<decimal,decimal> f=null;f=x=>x<2?1:x*f(x-1);
</code></pre>
<p>C# int formatted:</p>
<pre><code>Func<int,int> f = null;
f = (x) => (x < 2) ? 1 : x * f(x-1);
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1468623#14686232Answer by Stephen Canon for Code Golf: FactorialsStephen Canon2009-09-23T21:32:41Z2009-09-23T21:32:41Z<p>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.</p>
<pre><code>// 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
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1541193#15411930Answer by Mark Rushakoff for Code Golf: FactorialsMark Rushakoff2009-10-08T23:57:56Z2009-10-08T23:57:56Z<h1>Lua</h1>
<h2>45 chars</h2>
<p>Since Lua wasn't on here already.</p>
<pre><code>function f(i)return i>0 and i*f(i-1)or 1 end
</code></pre>
http://stackoverflow.com/questions/237496/code-golf-factorials/1653890#16538900Answer by eyze for Code Golf: Factorialseyze2009-10-31T09:33:21Z2009-10-31T09:33:21Z<h1>PHP - 59 chars</h1>
<pre><code>function f($n){return array_reduce(range(1,$n),'bcmul',1);}
</code></pre>