Discuss / Python / 我对递归理解很费劲,勉强写出答案

我对递归理解很费劲,勉强写出答案

Topic source

def move(n,a,b,c): if n==1: return print(a, "->", c) else: move(n-1,a,c,b) print(a,'-->',c) move(n-1,b,a,c)


  • 1

Reply