Created
June 8, 2015 15:39
-
-
Save cers/d64e56d971bb43e07efc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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