Fibonacci Code Golf - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:59:56Zhttp://stackoverflow.com/feeds/question/232861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/232861/fibonacci-code-golf8Fibonacci Code GolfClaudiu2008-10-24T08:49:38Z2009-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#2329437Answer by Chris Young for Fibonacci Code GolfChris Young2008-10-24T09:46:44Z2008-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#23316116Answer by Chris Jester-Young for Fibonacci Code GolfChris Jester-Young2008-10-24T11:30:12Z2008-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#23322826Answer by Krakkos for Fibonacci Code GolfKrakkos2008-10-24T12:03:52Z2008-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#2333425Answer by PhiLho for Fibonacci Code GolfPhiLho2008-10-24T12:38:09Z2008-10-24T14:38:25Z<p>For the record:</p>
<ul>
<li>Lua (66 chars): <code>function f(n)if n<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<2?n:f(n-1)+f(n-2)}</code></li>
<li>Java (41 chars): <code>int f(int n){return n<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++<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++<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<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<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<1?b:f(n-1,b,a+b);}</code></li>
</ul>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/233471#2334715Answer by Andrea Ambu for Fibonacci Code GolfAndrea Ambu2008-10-24T13:09:27Z2008-10-24T15:59:11Z<p>Python, 38 chars.</p>
<pre><code>f=lambda n:n if n<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#23356811Answer by mpeters for Fibonacci Code Golfmpeters2008-10-24T13:40:23Z2008-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#2338890Answer by mstrobl for Fibonacci Code Golfmstrobl2008-10-24T14:55:38Z2008-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#2346905Answer by ephemient for Fibonacci Code Golfephemient2008-10-24T18:10:25Z2008-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#2347471Answer by Adam Rosenfield for Fibonacci Code GolfAdam Rosenfield2008-10-24T18:27:17Z2008-10-24T18:36:06Z<p>33 characters in C:</p>
<pre><code>F(n){return n<2?n:F(n-1)+F(n-2);}</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/234767#2347671Answer by annoying kid for Fibonacci Code Golfannoying kid2008-10-24T18:32:41Z2008-10-24T18:32:41Z<p>Generate the Fibonacci sequence.
sequence
SEQUENCE!</p>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/249970#2499703Answer by Firas for Fibonacci Code GolfFiras2008-10-30T12:15:34Z2009-07-07T11:36:08Z<p>Ruby (30 characters):</p>
<pre><code>def f(n)n<2?n:f(n-1)+f(n-2)end
</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/250041#2500411Answer by J.F. Sebastian for Fibonacci Code GolfJ.F. Sebastian2008-10-30T12:43:01Z2009-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#2502022Answer by Paulius Maruška for Fibonacci Code GolfPaulius Maruška2008-10-30T13:38:54Z2008-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#2704700Answer by Steve for Fibonacci Code GolfSteve2008-11-06T21:57:19Z2008-11-06T21:57:19Z<p>Delphi Prism (Delphi for .net)</p>
<pre><code>f:func<int32,int32>:=n->iif(n>1,f(n-1)+f(n-2),n)
</code></pre>
<p>49 chars</p>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/332302#3323020Answer by Lex for Fibonacci Code GolfLex2008-12-01T21:27:22Z2008-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<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<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<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#3969902Answer by Hynek -Pichi- Vychodil for Fibonacci Code GolfHynek -Pichi- Vychodil2008-12-29T02:13:56Z2008-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#4118942Answer by BenAlabaster for Fibonacci Code GolfBenAlabaster2009-01-04T23:22:42Z2009-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 < 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#4120404Answer by Henk for Fibonacci Code GolfHenk2009-01-05T01:11:37Z2009-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#4121200Answer by alexn for Fibonacci Code Golfalexn2009-01-05T02:07:04Z2009-01-05T02:07:04Z<p><strong>PHP - 47 chars</strong></p>
<pre><code>function f($i){return $i<2?$i:f($i-1)+f($i-2);}
</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/412152#4121524Answer by Eclipse for Fibonacci Code GolfEclipse2009-01-05T02:39:39Z2009-01-05T02:46:06Z<p>Language: C++ Compiler Errors<br />
Characters: 205</p>
<pre><code>#define t template <int n> struct
#define u template <> struct f
t g { int v[0]; };
t f { enum { v = f<n-1>::v + f<n-2>::v }; g<v> x;};
u<1> { enum { v = 1 }; };
u<0> { enum { v = 0 }; };
int main() { f<10> x; }
</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/530714#5307140Answer by Zurahn for Fibonacci Code GolfZurahn2009-02-10T00:53:40Z2009-02-12T05:15:01Z<p>I don't really see how the answers with n<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<$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<9;++$i){echo ",$n";$d=$o;$o=$n;$n+=$d;}
</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/537083#5370832Answer by David Klein for Fibonacci Code GolfDavid Klein2009-02-11T14:39:25Z2009-02-11T14:39:25Z<p>F#:</p>
<pre><code>(0,1)|>Seq.unfold(fun(a,b)->Some(a,(b,a+b)))
</code></pre>
<p>44 Chars</p>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/1057022#10570222Answer by huitseeker for Fibonacci Code Golfhuitseeker2009-06-29T07:40:00Z2009-06-30T01:21:02Z<pre><code>let rec f l a b =function 0->a::l|1->b::l|n->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#13965390Answer by Matt Lewis for Fibonacci Code GolfMatt Lewis2009-09-08T21:56:21Z2009-09-08T21:56:21Z<p><strong>Euphoria: 44 characters</strong></p>
<pre><code>object f=1&1 loop do f&=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#13965741Answer by Nican for Fibonacci Code GolfNican2009-09-08T22:04:33Z2009-09-08T22:04:33Z<p>Lua - 49 chars</p>
<pre><code>function f(n)return n<2 and n or f(n-1)+f(n-2)end
</code></pre>
http://stackoverflow.com/questions/232861/fibonacci-code-golf/1396763#13967632Answer by I. J. Kennedy for Fibonacci Code GolfI. J. Kennedy2009-09-08T22:54:05Z2009-09-08T22:54:05Z<p>x86 (C-callable) realmode, 14 bytes.<br />
Input is n on stack, returns F<sub>n</sub> 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#13968280Answer by Chris Dodd for Fibonacci Code GolfChris Dodd2009-09-08T23:15:14Z2009-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#14002190Answer by Hellion for Fibonacci Code GolfHellion2009-09-09T14:52:10Z2009-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#15488881Answer by Mark Rushakoff for Fibonacci Code GolfMark Rushakoff2009-10-10T19:49:26Z2009-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>