Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 339 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 339 Bytes

N-Queens-visualiser

Demonstration project of N-Queens problem using JavaScript.

Placing N chess queens on an N×N chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonals.

Accomplished using Backtracking Algorithm