Skip to content

Instantly share code, notes, and snippets.

@cers
Created June 8, 2015 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cers/d64e56d971bb43e07efc to your computer and use it in GitHub Desktop.
Save cers/d64e56d971bb43e07efc to your computer and use it in GitHub Desktop.
def h(n):
print 2**n-1
def m(h,f,v,t):
if h>0:m(h-1,f,t,v);print"Move disk from [%d] to [%d]"%(f,t);m(h-1,v,f,t)
m(n,1,2,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment