mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
07e991d553
* ci(pre-commit): Add pep8-naming to `pre-commit` hooks (#7038) * refactor: Fix naming conventions (#7038) * Update arithmetic_analysis/lu_decomposition.py Co-authored-by: Christian Clauss <cclauss@me.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * refactor(lu_decomposition): Replace `NDArray` with `ArrayLike` (#7038) * chore: Fix naming conventions in doctests (#7038) * fix: Temporarily disable project euler problem 104 (#7069) * chore: Fix naming conventions in doctests (#7038) Co-authored-by: Christian Clauss <cclauss@me.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
29 lines
700 B
Python
29 lines
700 B
Python
def move_tower(height, from_pole, to_pole, with_pole):
|
|
"""
|
|
>>> move_tower(3, 'A', 'B', 'C')
|
|
moving disk from A to B
|
|
moving disk from A to C
|
|
moving disk from B to C
|
|
moving disk from A to B
|
|
moving disk from C to A
|
|
moving disk from C to B
|
|
moving disk from A to B
|
|
"""
|
|
if height >= 1:
|
|
move_tower(height - 1, from_pole, with_pole, to_pole)
|
|
move_disk(from_pole, to_pole)
|
|
move_tower(height - 1, with_pole, to_pole, from_pole)
|
|
|
|
|
|
def move_disk(fp, tp):
|
|
print("moving disk from", fp, "to", tp)
|
|
|
|
|
|
def main():
|
|
height = int(input("Height of hanoi: ").strip())
|
|
move_tower(height, "A", "B", "C")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|