Fibonacci Code Golf - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:59:56Z http://stackoverflow.com/feeds/question/232861 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/232861/fibonacci-code-golf 8 Fibonacci Code Golf Claudiu 2008-10-24T08:49:38Z 2009-10-18T04:00:35Z <p>Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, <code>f</code>, which prints the Fibonacci numbers.</p> <p>Starting point: <strong>25 characters</strong> in <strong>Haskell</strong>:</p> <pre><code>f=0:1:zipWith(+)f(tail f) </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/232943#232943 7 Answer by Chris Young for Fibonacci Code Golf Chris Young 2008-10-24T09:46:44Z 2008-10-24T09:53:07Z <p>22 characters with dc:</p> <pre><code>1[pdd5**v1++2/lxx]dsxx </code></pre> <p>Invoke with either:</p> <pre> dc -e'1[pdd5**v1++2/lxx]dsxx' </pre> <p>Or:</p> <pre> echo '1[pdd5**v1++2/lxx]dsxx' | dc </pre> <p>Note: not my work, poached from <a href="http://www.perlmonks.com/?node_id=626425" rel="nofollow">perlmonks</a>.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233161#233161 16 Answer by Chris Jester-Young for Fibonacci Code Golf Chris Jester-Young 2008-10-24T11:30:12Z 2008-10-24T11:42:53Z <p>13 chars of <a href="http://www.golfscript.com/" rel="nofollow">Golfscript</a>:</p> <pre><code>2,~{..p@+.}do </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233228#233228 26 Answer by Krakkos for Fibonacci Code Golf Krakkos 2008-10-24T12:03:52Z 2008-10-24T12:03:52Z <p>18 characters of English..</p> <p>"Fibonacci Sequence"</p> <p>ok, I fail. :)</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233342#233342 5 Answer by PhiLho for Fibonacci Code Golf PhiLho 2008-10-24T12:38:09Z 2008-10-24T14:38:25Z <p>For the record:</p> <ul> <li>Lua (66 chars): <code>function f(n)if n&lt;2 then return n else return f(n-1)+f(n-2)end end</code></li> <li>JavaScript (41 chars): <code>function f(n){return n&lt;2?n:f(n-1)+f(n-2)}</code></li> <li>Java (41 chars): <code>int f(int n){return n&lt;2?n:f(n-1)+f(n-2);}</code></li> </ul> <p>I am not much adept of super concise languages... :-P</p> <p>Chris is right, I just took the simple, recursive algorithm. Actually, the linear one is even shorter in Lua (thanks to multiple assignment)! JavaScript isn't so lucky and Java is worse, having to declare vars...</p> <ul> <li>Lua (60 chars): <code>function f(n)a=1;b=0;for i=1,n do a,b=b,a+b end return b end</code></li> <li>JavaScript (60 chars): <code>function f(n){a=1;b=i=0;for(;i++&lt;n;){x=a+b;a=b;b=x}return b}</code></li> <li>Java (71 chars): <code>int f(int n){int a=1,b=0,i=0;for(;i++&lt;n;){int x=a+b;a=b;b=x;}return b;}</code></li> </ul> <p>I would write Lua's code with <code>local a,b=1,0</code> but it is longer, so let's pollute _G! ;-) Idem for JS.</p> <p>For completeness, here are the terminal recursive versions. Lua's one, using tail call, is as fast as the linear one (but 69 chars, it is the longest!) - need to call them with three params, n,1,0.</p> <ul> <li>Lua (69 char, longer!): <code>function f(n,a,b)if n&lt;1 then return b else return f(n-1,b,a+b)end end</code></li> <li>JavaScript (44 chars): <code>function f(n,a,b){return n&lt;1?b:f(n-1,b,a+b)}</code></li> <li>Java (52 chars): <code>int f(int n,int a,int b){return n&lt;1?b:f(n-1,b,a+b);}</code></li> </ul> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233471#233471 5 Answer by Andrea Ambu for Fibonacci Code Golf Andrea Ambu 2008-10-24T13:09:27Z 2008-10-24T15:59:11Z <p>Python, 38 chars.</p> <pre><code>f=lambda n:n if n&lt;2 else f(n-1)+f(n-2) </code></pre> <p>Not so short but the most readable in my opinion :P</p> <p>EDIT: Here is the iterative way (if someone needs to see it in python :-)</p> <pre><code>f=lambda n:((1+5**.5)**n-(1-5**.5)**n)/(2**n*5**.5) </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233568#233568 11 Answer by mpeters for Fibonacci Code Golf mpeters 2008-10-24T13:40:23Z 2008-10-24T13:40:23Z <p>Perl 6 - 22 characters</p> <p><code>sub f{1,1...{$^a+$^b}}</code></p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/233889#233889 0 Answer by mstrobl for Fibonacci Code Golf mstrobl 2008-10-24T14:55:38Z 2008-10-24T14:55:38Z <p>Not the shortest, but the fastest at the time of posting. :-)</p> <pre><code>float f(float n) { return (pow(1+sqrt(5.0))/2.0),n) - pow(1+sqrt(5.0))/2.0),n)/sqrt(n)); } </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/234690#234690 5 Answer by ephemient for Fibonacci Code Golf ephemient 2008-10-24T18:10:25Z 2008-10-24T18:21:02Z <p><a href="http://www.jsoftware.com/" rel="nofollow">J</a>, 27 characters for a non-recursive function:</p> <pre><code>f=:3 :'{:}.@(,+/)^:y(0 1x)' </code></pre> <p><code>+/</code> sums over a list.<br /> <code>(,+/)</code> appends the sum of a list to its tail.<br /> <code>}.@(,+/)</code> sums a list, appends an element to its tail, and drops the first element.<br /> <code>}.@(,+/)^:y</code> iterates the above function <code>y</code> times.<br /> <code>}.@(,+/)^:y(0 1x)</code> applies the above function to the list <code>(0,1)</code> (the <code>x</code> makes it an integer).<br /> <code>{:}.@(,+/)^:y(0 1x)</code> takes the last element of the output list of the above.<br /> <code>f=:3 :'{:}.@(,+/)^:y(0 1x)'</code> defines <code>f</code> to be a function on one variable <code>y</code>.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/234747#234747 1 Answer by Adam Rosenfield for Fibonacci Code Golf Adam Rosenfield 2008-10-24T18:27:17Z 2008-10-24T18:36:06Z <p>33 characters in C:</p> <pre><code>F(n){return n&lt;2?n:F(n-1)+F(n-2);}</code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/234767#234767 1 Answer by annoying kid for Fibonacci Code Golf annoying kid 2008-10-24T18:32:41Z 2008-10-24T18:32:41Z <p>Generate the Fibonacci sequence. sequence SEQUENCE!</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/249970#249970 3 Answer by Firas for Fibonacci Code Golf Firas 2008-10-30T12:15:34Z 2009-07-07T11:36:08Z <p>Ruby (30 characters):</p> <pre><code>def f(n)n&lt;2?n:f(n-1)+f(n-2)end </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/250041#250041 1 Answer by J.F. Sebastian for Fibonacci Code Golf J.F. Sebastian 2008-10-30T12:43:01Z 2009-10-18T04:00:35Z <p>@Andrea Ambu</p> <p>An iterative pythonic <code>fibonacci()</code>'s version should look something like that:</p> <pre><code>def fibonacci(a=0, b=1): while True: yield b a, b = b, a+b </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/250202#250202 2 Answer by Paulius Maruška for Fibonacci Code Golf Paulius Maruška 2008-10-30T13:38:54Z 2008-10-30T13:38:54Z <p>Windows XP (and later versions) batch script. This batch function when given a single argument - amount, generates amount+1 Fibonacci numbers and returns them as a string (BATCH doesn't really have sets) in variable %r% (369 characters, or 347 characters - if we remove indentation):</p> <pre><code>:f set i=0 set r=1 set n=1 set f=0 :l if %n% GTR %~1 goto e set f=%f% %r% set /A s=%i%+%r% set i=%r% set r=%s% set /A n+=1 goto l :e set r=%f% exit /B 0 </code></pre> <p>And here's the complete script, to see it in action (just copy-past it into a CMD or BAT file and run it):</p> <pre><code>@echo off call :ff 0 call :ff 1 call :ff 2 call :ff 3 call :ff 5 call :ff 10 call :ff 15 call :ff 20 exit /B 0 :ff call :f "%~1" echo %~1: %r% exit /B 0 :f set i=0 set r=1 set n=1 set f=0 :l if %n% GTR %~1 goto e set f=%f% %r% set /A s=%i%+%r% set i=%r% set r=%s% set /A n+=1 goto l :e set r=%f% exit /B 0 </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/270470#270470 0 Answer by Steve for Fibonacci Code Golf Steve 2008-11-06T21:57:19Z 2008-11-06T21:57:19Z <p>Delphi Prism (Delphi for .net)</p> <pre><code>f:func&lt;int32,int32&gt;:=n-&gt;iif(n&gt;1,f(n-1)+f(n-2),n) </code></pre> <p>49 chars</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/332302#332302 0 Answer by Lex for Fibonacci Code Golf Lex 2008-12-01T21:27:22Z 2008-12-01T21:27:22Z <p>The previous Ruby example won't work w/o either semicolons or newlines, so it's actually 32 chars. Here's the first example to actually output the sequence, not just return the value of a specified index.</p> <p>Ruby:<br /> 53 chars, including newlines:</p> <pre><code>def f(n);n&lt;2?1:f(n-1)+f(n-2);end 0.upto 20 {|n|p f n} </code></pre> <p>or if you want function that outputs a usable data structure, 71 chars:</p> <pre><code>def f(n);n&lt;2?1:f(n-1)+f(n-2);end def s(n);(0..n).to_a.map {|n| f(n)};end </code></pre> <p>or accepting command-line args, 70 chars:</p> <pre><code>def f(n);n&lt;2?1:f(n-1)+f(n-2);end p (0..$*[0].to_i).to_a.map {|n| f(n)} </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/396990#396990 2 Answer by Hynek -Pichi- Vychodil for Fibonacci Code Golf Hynek -Pichi- Vychodil 2008-12-29T02:13:56Z 2008-12-29T02:13:56Z <h3>Language: dc, Char count: 20</h3> <p>Shorter dc solution.</p> <pre><code>dc -e'1df[dsa+plarlbx]dsbx' </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/411894#411894 2 Answer by BenAlabaster for Fibonacci Code Golf BenAlabaster 2009-01-04T23:22:42Z 2009-01-04T23:22:42Z <p><strong>C#</strong></p> <p>I'm seeing a lot of answers that don't actually generate the sequence, but instead give you only the fibonacci number at position *n using recursion, which when looped to generate the sequence gets increasingly slower at higher values of <em>n</em>.</p> <pre><code>using System; static void Main() { var x = Math.Sqrt(5); for (int n = 0; n &lt; 10; n++) Console.WriteLine((Math.Pow((1 + x) / 2, n) - Math.Pow((1 - x) / 2, n)) / p) ; } </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/412040#412040 4 Answer by Henk for Fibonacci Code Golf Henk 2009-01-05T01:11:37Z 2009-07-07T11:37:13Z <p>Here's my best using scheme, in 45 characters:</p> <pre><code>(let f((a 0)(b 1))(printf"~a,"b)(f b(+ a b))) </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/412120#412120 0 Answer by alexn for Fibonacci Code Golf alexn 2009-01-05T02:07:04Z 2009-01-05T02:07:04Z <p><strong>PHP - 47 chars</strong></p> <pre><code>function f($i){return $i&lt;2?$i:f($i-1)+f($i-2);} </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/412152#412152 4 Answer by Eclipse for Fibonacci Code Golf Eclipse 2009-01-05T02:39:39Z 2009-01-05T02:46:06Z <p>Language: C++ Compiler Errors<br /> Characters: 205</p> <pre><code>#define t template &lt;int n&gt; struct #define u template &lt;&gt; struct f t g { int v[0]; }; t f { enum { v = f&lt;n-1&gt;::v + f&lt;n-2&gt;::v }; g&lt;v&gt; x;}; u&lt;1&gt; { enum { v = 1 }; }; u&lt;0&gt; { enum { v = 0 }; }; int main() { f&lt;10&gt; x; } </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/530714#530714 0 Answer by Zurahn for Fibonacci Code Golf Zurahn 2009-02-10T00:53:40Z 2009-02-12T05:15:01Z <p>I don't really see how the answers with n&lt;2?n:f(n-1)+f(n-2) would actually work, yet there are several. Anyway,</p> <p>PHP: 83 chars</p> <pre><code>function f($t){echo $o=0;$n=1;for($i=0;$i&lt;$t;++$i){echo ",$n";$d=$o;$o=$n;$n+=$d;}} </code></pre> <p>or 67 chars when not as a function, size increases per number of terms</p> <pre><code>echo $o=0;$n=1;for($i=0;$i&lt;9;++$i){echo ",$n";$d=$o;$o=$n;$n+=$d;} </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/537083#537083 2 Answer by David Klein for Fibonacci Code Golf David Klein 2009-02-11T14:39:25Z 2009-02-11T14:39:25Z <p>F#:</p> <pre><code>(0,1)|&gt;Seq.unfold(fun(a,b)-&gt;Some(a,(b,a+b))) </code></pre> <p>44 Chars</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1057022#1057022 2 Answer by huitseeker for Fibonacci Code Golf huitseeker 2009-06-29T07:40:00Z 2009-06-30T01:21:02Z <pre><code>let rec f l a b =function 0-&gt;a::l|1-&gt;b::l|n-&gt;f (a::l) b (a+b) (n-1) in f [] 1 1;; </code></pre> <p>80 characters, but truly generates the sequence, in linear time.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1396539#1396539 0 Answer by Matt Lewis for Fibonacci Code Golf Matt Lewis 2009-09-08T21:56:21Z 2009-09-08T21:56:21Z <p><strong>Euphoria: 44 characters</strong></p> <pre><code>object f=1&amp;1 loop do f&amp;=f[$]+f[$-1]until 0 </code></pre> <p>Keeps on generating until RAM or doubles run out.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1396574#1396574 1 Answer by Nican for Fibonacci Code Golf Nican 2009-09-08T22:04:33Z 2009-09-08T22:04:33Z <p>Lua - 49 chars</p> <pre><code>function f(n)return n&lt;2 and n or f(n-1)+f(n-2)end </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1396763#1396763 2 Answer by I. J. Kennedy for Fibonacci Code Golf I. J. Kennedy 2009-09-08T22:54:05Z 2009-09-08T22:54:05Z <p>x86 (C-callable) realmode, 14 bytes.<br /> Input is&nbsp;&nbsp;n&nbsp;&nbsp;on stack, returns&nbsp;&nbsp;F<sub>n</sub>&nbsp;&nbsp;in AX.</p> <pre><code>59 31 C0 E3 08 89 C3 40 93 01 D8 E2 FB C3 </code></pre> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1396828#1396828 0 Answer by Chris Dodd for Fibonacci Code Golf Chris Dodd 2009-09-08T23:15:14Z 2009-09-08T23:15:14Z <p>Lucid</p> <pre><code>f = 1 fby 1 fby f + prev f; </code></pre> <p>27 characters, including the spaces.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1400219#1400219 0 Answer by Hellion for Fibonacci Code Golf Hellion 2009-09-09T14:52:10Z 2009-09-09T14:52:10Z <p>Rexx:</p> <p>arg n;a=1;b=1;do i=1 to n;say a b;a=a+b;b=a+b;end</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/1548888#1548888 1 Answer by Mark Rushakoff for Fibonacci Code Golf Mark Rushakoff 2009-10-10T19:49:26Z 2009-10-10T19:49:26Z <h1><a href="http://en.wikipedia.org/wiki/Befunge" rel="nofollow">Befunge-93</a></h1> <h2>31 chars</h2> <p>Will output an infinite list of the Fibonacci numbers, from 0 upwards, separated by tabs (could be reduced to 29 chars by deleting <code>9,</code> in the first row, at the expense of no whitespace between numbers). </p> <p>Unfortunately, all the Befunge-93 interpreters I've tried seem to overflow after 65k, so the output is only correct until and including 46368 (which is <strong>F</strong><sub>24</sub>).</p> <pre> #v::1p1>01g:.\:01p+9,# > ^ </pre> <p>Confirmed to work (with caveat above) with <a href="http://www.quirkster.com/js/befunge.html" rel="nofollow">the Befunge-93 interpreter in Javascript</a> and the <a href="http://www.ashleymills.com/?q=befunge%5Fapplet%5Ffull" rel="nofollow">Visual Befunge Applet Full</a>.</p> <p>I'm proud to say this is a completely original work (i.e. I did not copy this code from anyone), and it's much shorter than <a href="http://rosettacode.org/wiki/Fibonacci%5Fsequence#Befunge" rel="nofollow">the Befunge solution currently on Rosetta Code</a>.</p>