uta-it-Students / Tower_of_Hanoi

Implementation of the famous puzle "Tower of Hanoi".

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tower_of_Hanoi

Implementation of the famous puzle "Tower of Hanoi". The setup consists of three pegs (sticks) and a certain amount of discs (in this implementation there can be a maximum of 6 discs). The discs have different sizes, and are placed on top of each other sorted from the biggest to the smallest. game start

Goal

Move all the discs from the first peg to the third. Additionally you can try to win in less moves as possible. The number of moves is shown at the top left corner of the screen.

game won

Rules

  • You can only move one disc at the time;
  • You can only place a disc on pegs with no discs, or on top of a bigger disc;

How to play

1- Press the blue button under the peg on which the disc you want to move is on (this will make it light up);

2- Press the blue button under the peg where you want to place the disc;

Example of an ongoing match

middle game

About

Implementation of the famous puzle "Tower of Hanoi".


Languages

Language:Python 100.0%