made a maze which follows the principles of the ๐ N-Queen Problem.
An interactive way to solve N Queen Solve.
try Maze! The maze is a simple chess board with n number of rows and columns. The work is simple for n number of rows and columns you have to place n number of queens so that none of the queens should intersect with its rows, columns, and even diagonals.
In Computer Science the main goal is to solve this problem in the minimum number of attempts.
There are several ways to solve this problem using methods like brute force, backtracking, dynamic programming etc. Give it a try! n-queen
ย