8queens topic

List 8queens repositories

EightQueens

16
Stars
3
Forks
Watchers

Eight Queens chess game. Can you place 8 queens on the board with none under attack? A web game inspired by the class math puzzle. Built in React with Chessboard.jsx

The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other.

n_queens

15
Stars
11
Forks
Watchers

Solving N-Queens problem by DFS & BFS in Python.