You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Este repositório contém um projeto acadêmico desenvolvido para a disciplina de Paradigmas de Programação do curso de Ciências da Computação. O objetivo do projeto é explorar o paradigma lógico de programação, utilizando a linguagem Prolog para resolver problemas de lógica e modelagem de conhecimento.
The Tower of Hanoi problem consists of 3 rods and 4 discs of different sizes. The goal of the problem is to move the stack of discs from the leftmost tower to the rightmost tower while also following the rules.
The Tower of Hanoi problem consists of 3 rods and 3 discs of different sizes. The goal of the problem is to move the stack of discs from the leftmost tower to the rightmost tower while also following the rules.
Tower of Hanoi is a mathematical puzzle where we have three rods and n disks. The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules: player can only move one disk per turn and can never place a larger disk onto a smaller one at any time. this's a simple program to solve hanoi tower with n disk…