Discuss / Python / 交流

交流

Topic source

中原胡侃

#1 Created at ... [Delete] [Delete and Lock User]
在此插入代码

def move(n, A, B, C): if n == 0: return move(n - 1, A, C, B) print(A, '->', C) move(n - 1, B, A, C)


  • 1

Reply