Discuss / Python / 第九天打卡

第九天打卡

Topic source

    if n == 1:

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

        return

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

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

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

move(3, 'A', 'B', 'C')

A --> C 

A --> B 

C --> B 

A --> C 

B --> A 

B --> C 

A --> C


  • 1

Reply