Discuss / Python / 练习

练习

Topic source
if n == 1:
    print(a,'-->',c)
else:
    print(move(n-1,a,c,b))
    print(move(1,a,b,c))
    print(move(n-1,b,a,c))

  • 1

Reply