Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Fibs in your favourite language

Name: Anonymous 2008-12-20 15:04

fibs = 1 : zipWith (+) fibs (tail fibs)

Name: Anonymous 2008-12-20 15:54


int fibs[] = {0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765};

int fib(int n){
    if(n<0 || n>20) exit();
    return fibs[n];
}


Compile with -O3.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List