Discuss / Python / 这样阔以哦 大家理解的意思好像有点偏差

这样阔以哦 大家理解的意思好像有点偏差

Topic source

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


  • 1

Reply