Home
last modified time | relevance | path

Searched refs:hanoi (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Tools/demo/
H A Dhanoi.py6 Usage: hanoi.py [n [bitmapfile]]
19 def hanoi(n, a, b, c, report): function
21 hanoi(n-1, a, c, b, report)
23 hanoi(n-1, c, b, a, report)
81 hanoi(self.n, 0, 1, 2, self.report)
82 hanoi(self.n, 1, 2, 0, self.report)
83 hanoi(self.n, 2, 0, 1, self.report)
84 hanoi(self.n, 0, 2, 1, self.report)
85 hanoi(self.n, 2, 1, 0, self.report)
86 hanoi(sel
[all...]
/third_party/python/Lib/turtledemo/
H A Dminimal_hanoi.py44 def hanoi(n, from_, with_, to_): function
46 hanoi(n-1, from_, to_, with_)
48 hanoi(n-1, with_, from_, to_)
54 hanoi(6, t1, t2, t3)

Completed in 1 milliseconds