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
# Eight Queens Problem
A classic backtracking algorithm to place 8 queens on a chessboard such that no two queens attack each other.
## Problem Description
Place 8 queens on an 8×8 chessboard so that no two queens can attack each other (no two queens share the same row, column, or diagonal).
## Solution
Implements backtracking algorithm to find all possible solutions.