Posts Tagged ‘Algorithms’

8- Queens!

Posted: 29th January 2009 by Osama Gamal in Programming
Tags: , ,

8-Queens is a well-known puzzle that you had to place 8 queens on a 8×8 chess board.
In the Artificial Intelligence course that we studied last term “3rd CSE” we implemented 8-Queens using PROLOG. Prolog did a great job in searching but I thought alot about how to impelment it using a normal programming language? After [...]