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
A 8-Queens Solver that solves a common AI problem of placing 8 queens on a 8x8 board without any conflicts between the queens. Built using Tkinter (for UI) and Python. Includes two algorithms i.e. BFS (Breadth-First Search) and CSP (Constraint Satisfaction Problem).
Eight Queens chess game. Can you place 8 queens on the board with none under attack? A web game inspired by the classic math puzzle. Built in React with Chessboard.jsx
The 8 Queens Problem is placing of eight queens on an 8 x 8 chessboard in a way that no two queens threaten each other. This project presents a solution to through Python implementation utilizing a backtracking algorithm.