週報 2024-12-15


今週のやったこと

honoi.py
def hanoi(n, source, destination, auxiliary): if n > 0: hanoi(n - 1, source, auxiliary, destination) print(f"Move disc {n} from {source} to {destination}") hanoi(n - 1, auxiliary, destination, source) hanoi(3, "A", "C", "B")

次週のやること

今週もお疲れ様でした。