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

ITT Toy Programs

Name: Anonymous 2009-05-25 12:32

def hanoi(height, frm, to, spare):
    if height > 0:
        hanoi(height-1, frm, spare, to)
        print "Moving disk from", frm, "to", to
        hanoi(height-1, spare, to, from)

Name: Anonymous 2009-05-25 13:28

f@(_:fs) = [0, 1] ++ zipWith (+) f fs

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