Royal Resolve is a Python-based project that tackles the N-Queens problem using a graphical user interface. The project employs a backtracking algorithm to find solutions for the N-Queens puzzle.
Click on the image to see the demo video:
- nqueens.py: Contains the backtracking algorithm implementation to solve the N-Queens problem.
- Nqueensb1.py: This file incorporates a graphical user interface using Tkinter to create an interactive N-Queens puzzle game.
- Run Nqueensb1.py: Execute this file to launch the game interface.
- Start Game: Begin by entering the desired board size to initiate the N-Queens challenge.
- Gameplay: Click on cells to place or remove queens. The goal is to place N queens on an N×N chessboard without attacking each other.
- Options Available:
- Submit: Check if your arrangement of queens solves the puzzle.
- See Solution: View the correct arrangement of queens for the given board size. (Note: Progress will be lost.)
- Main Menu: Return to the main menu to start afresh.
- Exit: Terminate the game.
- Aesthetic Enhancement: Beautify the graphical interface for a more engaging user experience.
- Hint Functionality: Incorporate hints or guidance to assist players in solving the puzzle.
- Enhanced Compatibility: Ensure the game works efficiently for all possible board dimensions and multiple solutions if applicable.
Note: Ensure Python and necessary libraries like Tkinter and PIL are installed to run the application successfully.