Discuss / Python / 无所谓,习惯了

无所谓,习惯了

Topic source

longtometosee

#1 Created at ... [Delete] [Delete and Lock User]

def move(n,a,b,c):

    if n==1:

        print(a,'--->',c)

        return

    else:

        move(n-1,a,c,b)

        print(a,'--->',c)

        move(n-1,b,a,c)

print(move(4,'A','B','C'))


  • 1

Reply