Skip to content

Commit

Permalink
Danielewski's Fibonacci, now with the 0
Browse files Browse the repository at this point in the history
  - (sorry about that)
  • Loading branch information
Rob Friesel committed Oct 3, 2012
1 parent 4d01de1 commit 935590c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions danielewski/fibonacci.js
Expand Up @@ -3,12 +3,12 @@
stairs =
this['stairs'] ||
{};
stairs['0'] = null,
stairs['0'] = [],
stairs['1'] = [
1
0
],
stairs['2'] = [ 1, 1
];
stairs['2'] = [ 0, 1
],stairs['3']=stairs['2'].concat([1]);

function theSequence (depth)
{
Expand Down

0 comments on commit 935590c

Please sign in to comment.