There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
This is a Java program that solves the Queen Problem, which involves placing N queens on an N×N chessboard such that no two queens threaten each other. The program uses a recursive permutation algorithm to generate all possible solutions and checks for diagonal rule violations.