N-Queens - Backtracking Visualization
Goal: Place N queens on NΓN board so no two attack each other
Backtracking: Try placing queen in each column of current row
β’ If safe, move to next row
β’ If no safe position, backtrack to previous row
Time: O(N!)