Code Golf: Factorials - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:30:41Z http://stackoverflow.com/feeds/question/237496 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237496/code-golf-factorials 2 Code Golf: Factorials FlySwat 2008-10-26T03:46:27Z 2009-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#237505 3 Answer by FlySwat for Code Golf: Factorials FlySwat 2008-10-26T03:51:11Z 2008-10-26T04:40:13Z <p>My attempt, using C#:</p> <pre><code>int f(int v){return v&lt;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&lt;2) { return 1; } else { return v*f(v-1); } </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/237519#237519 10 Answer by Peter Burns for Code Golf: Factorials Peter Burns 2008-10-26T03:58:05Z 2008-10-26T04:19:48Z <p>Haskell:</p> <pre><code>\n-&gt;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#237520 0 Answer by FlySwat for Code Golf: Factorials FlySwat 2008-10-26T03:59:39Z 2008-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&lt;int,int&gt;f=null;f=v=&gt;v&lt;2?1:v*f(v-1); </code></pre> <p>41 characters.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/237550#237550 0 Answer by Eugene M for Code Golf: Factorials Eugene M 2008-10-26T04:19:04Z 2008-10-26T04:24:17Z <p>40 in python without trying too hard.</p> <pre><code>def f(n):return (1 if n&lt;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#237565 18 Answer by Ken Paul for Code Golf: Factorials Ken Paul 2008-10-26T04:31:03Z 2008-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#237566 1 Answer by Federico Ramponi for Code Golf: Factorials Federico Ramponi 2008-10-26T04:31:19Z 2008-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#237576 2 Answer by Peter Burns for Code Golf: Factorials Peter Burns 2008-10-26T04:46:53Z 2008-10-26T04:46:53Z <p>Ruby, 26 characters:</p> <pre><code>def f i;i&lt;2?1:i*f(i-1);end </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/237612#237612 1 Answer by Skip Head for Code Golf: Factorials Skip Head 2008-10-26T05:26:36Z 2009-01-02T20:36:22Z <p>Java:</p> <pre><code>int f(int n){return n&gt;1?f(n-1)*n:1;} </code></pre> <p>Identical to C.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/237622#237622 6 Answer by Menkboy for Code Golf: Factorials Menkboy 2008-10-26T05:38:50Z 2008-10-26T05:38:50Z <p>9 bytes of i386 machine-code. Input is EAX, output is EAX.</p> <pre><code>#AT&amp;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#237638 5 Answer by bk1e for Code Golf: Factorials bk1e 2008-10-26T05:56:38Z 2008-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#237646 0 Answer by bk1e for Code Golf: Factorials bk1e 2008-10-26T06:05:31Z 2008-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#237648 0 Answer by aaront for Code Golf: Factorials aaront 2008-10-26T06:10:35Z 2008-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#237746 1 Answer by Matthew Scharley for Code Golf: Factorials Matthew Scharley 2008-10-26T08:40:50Z 2008-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#237790 21 Answer by sundar for Code Golf: Factorials sundar 2008-10-26T09:34:57Z 2008-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>,&gt;++++++[&lt;--------&gt;-]&lt;[-&gt;+&gt;+&lt;&lt;]&gt;&gt;-&gt;&gt;+&lt;&lt;&lt;[&gt;[&lt;[-&gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;]&gt;[-&lt;+&gt;]&lt;&lt;]&lt;[-&gt;+&lt;]&gt;&gt;-]&lt;.&gt;&gt;&gt;-]&gt;&gt;&gt;[.-] </code></pre> <p>Commented and indented:</p> <pre><code>, &gt;++++++ Put 6 in next cell [&lt;--------&gt;-] Subtract 8 six times to subtract 48 &lt; [-&gt;+&gt;+&lt;&lt;] Move (0) to (1) and (2) &gt;&gt;- Decrement one from (2) as we want to multiply n * n minus 1 &gt;&gt;+ Store 1 in (4) to allow distinguishing 0 separately &lt;&lt;&lt; Go to (1) [ A makeshift if($_ != 0) &gt;[ While (2) &lt;[ While(1) - Subtract one from (1) for multiplication by repeated addition &gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;] Add (2) to (0) and (3) &gt;[-&lt;+&gt;] Move data from (3) to (2) &lt;&lt; ] &lt;[-&gt;+&lt;] Copy (0) to (1) for next round of multiplication &gt;&gt;- Decrement (2) to go to n minus 2 and so on ] &lt;.&gt;&gt;&gt;- Print output from (1) and make (4) = 0 to stop the if ] &gt;&gt;&gt;[.-] 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>[-&gt;+&gt;+&lt;&lt;]&gt;&gt;-&gt;&gt;+&lt;&lt;&lt;[&gt;[&lt;[-&gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;]&gt;[-&lt;+&gt;]&lt;&lt;]&lt;[-&gt;+&lt;]&gt;&gt;-]&lt;.&gt;&gt;&gt;-]&gt;&gt;&gt;[.-] </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#239067 3 Answer by Claudiu for Code Golf: Factorials Claudiu 2008-10-27T04:17:47Z 2008-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&lt;2and 1or n*f(n-1) </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/239285#239285 0 Answer by esiegel for Code Golf: Factorials esiegel 2008-10-27T07:46:45Z 2008-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#288654 0 Answer by Adam Rosenfield for Code Golf: Factorials Adam Rosenfield 2008-11-13T22:53:54Z 2008-11-13T22:53:54Z <p>28 characters in C:</p> <pre><code>F(n){return n&gt;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#309833 2 Answer by Brad Gilbert for Code Golf: Factorials Brad Gilbert 2008-11-21T19:10:12Z 2009-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:&lt;!&gt;($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#407806 1 Answer by Hynek -Pichi- Vychodil for Code Golf: Factorials Hynek -Pichi- Vychodil 2009-01-02T19:32:00Z 2009-01-02T20:22:48Z <h3>Language: dc, Char count:23</h3> <p>23 chars version:</p> <pre><code>dc -e'?d[1-dsa*lad1&lt;b]dsbxszp' &lt;&lt;&lt;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' &lt;&lt;&lt;1000 </code></pre> <p>I should mention that dc is arbitrary precision calculator.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/407876#407876 1 Answer by Hynek -Pichi- Vychodil for Code Golf: Factorials Hynek -Pichi- Vychodil 2009-01-02T20:00:46Z 2009-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#407957 7 Answer by Hudson for Code Golf: Factorials Hudson 2009-01-02T20:37:45Z 2009-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 &lt;iostream&gt; template &lt;int N&gt; struct Factorial { enum { value = N * Factorial&lt;N - 1&gt;::value }; }; template &lt;&gt; struct Factorial&lt;0&gt; { enum { value = 1 }; }; int main() { std::cout &lt;&lt; "4!=" &lt;&lt; Factorial&lt;4&gt;::value &lt;&lt; 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#408003 0 Answer by Triptych for Code Golf: Factorials Triptych 2009-01-02T20:58:51Z 2009-01-02T22:24:12Z <h3>New python record: 28 chars</h3> <pre><code>f=lambda x:+(x&lt;2)or x*f(x-1) </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/408099#408099 0 Answer by Ray Tayek for Code Golf: Factorials Ray Tayek 2009-01-02T21:44:46Z 2009-01-02T21:44:46Z <p>25 characters in groovy: def f(n){n&lt;=2?n:n*f(n-1)}</p> http://stackoverflow.com/questions/237496/code-golf-factorials/408114#408114 0 Answer by Juliet for Code Golf: Factorials Juliet 2009-01-02T21:50:04Z 2009-01-02T21:50:04Z <p>F#:</p> <pre><code>let f n = [1..n] |&gt; Seq.fold ( * ) 1 </code></pre> <p>With spaces: 36 chars. Spaces removed, 30 chars.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/408126#408126 0 Answer by litb for Code Golf: Factorials litb 2009-01-02T21:57:34Z 2009-01-02T21:57:34Z <p>Someone posted <code>dc</code>. I'm going to post <code>bc, paste &amp; 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#408128 0 Answer by Germán for Code Golf: Factorials Germán 2009-01-02T22:00:29Z 2009-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#411461 0 Answer by BenAlabaster for Code Golf: Factorials BenAlabaster 2009-01-04T18:41:51Z 2009-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 &lt; 2</p> <pre><code>decimal f(int v) { return v &gt; 1 ? v * f(v - 1) : 1; } </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/514601#514601 1 Answer by Uros Dimitrijevic for Code Golf: Factorials Uros Dimitrijevic 2009-02-05T04:42:00Z 2009-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 -&gt; [1..n] </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/1467152#1467152 0 Answer by stafford rootbeer for Code Golf: Factorials stafford rootbeer 2009-09-23T16:27:11Z 2009-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#1467208 0 Answer by Stafford Rootbeer for Code Golf: Factorials Stafford Rootbeer 2009-09-23T16:38:09Z 2009-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#1467332 0 Answer by JStriedl for Code Golf: Factorials JStriedl 2009-09-23T16:59:31Z 2009-09-23T16:59:31Z <p>The most brief version in AS3 at 37 characters:</p> <pre><code>function f(i){return i&lt;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&lt;1) ? 1 : i * factorial(i-1);} </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/1467436#1467436 0 Answer by Pillsy for Code Golf: Factorials Pillsy 2009-09-23T17:17:24Z 2009-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&lt;=#2,#1,#0[#1,2#2]#0[#1-#2,2#2]]&amp;[#,1]&amp; </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&lt;1,1,#1#0[#1-1]]&amp;[#,0]&amp; </code></pre> <p>Of course, a list-based solution is even shorter (15 characters).</p> <pre><code>Times@@Range@#&amp; </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#1467688 0 Answer by nilamo for Code Golf: Factorials nilamo 2009-09-23T18:11:50Z 2009-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 ![n](apply *(range 1(inc n)))) </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#1467903 0 Answer by Dykam for Code Golf: Factorials Dykam 2009-09-23T18:45:54Z 2009-09-23T18:45:54Z <h2>C# 41:</h2> <pre><code>Func&lt;int,int&gt; f=null;f=x=&gt;x&lt;2?1:x*f(x-1); </code></pre> <h2>C# 49, decimal</h2> <pre><code>Func&lt;decimal,decimal&gt; f=null;f=x=&gt;x&lt;2?1:x*f(x-1); </code></pre> <p>C# int formatted:</p> <pre><code>Func&lt;int,int&gt; f = null; f = (x) =&gt; (x &lt; 2) ? 1 : x * f(x-1); </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/1468623#1468623 2 Answer by Stephen Canon for Code Golf: Factorials Stephen Canon 2009-09-23T21:32:41Z 2009-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#1541193 0 Answer by Mark Rushakoff for Code Golf: Factorials Mark Rushakoff 2009-10-08T23:57:56Z 2009-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&gt;0 and i*f(i-1)or 1 end </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/1653890#1653890 0 Answer by eyze for Code Golf: Factorials eyze 2009-10-31T09:33:21Z 2009-10-31T09:33:21Z <h1>PHP - 59 chars</h1> <pre><code>function f($n){return array_reduce(range(1,$n),'bcmul',1);} </code></pre>