-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
N-Queen #17
Labels
Comments
Hi @harsh-dart please assign this to me |
plz assign this task to me and also add hactoberfest tag........ |
Hi @harsh-dart please assign me this task. |
/assign |
PR to this issue --> #111 |
Hey please assign this issue to me for Hactoberfest 2024. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would like to contribute to this repository by implementing the N-Queen problem in Python as part of Hacktoberfest 2024.
Description:
The N-Queen problem is a classic backtracking algorithm problem where the goal is to place
N
queens on anN x N
chessboard in such a way that no two queens threaten each other. We need a Python solution for this problem, which includes:Input:
N
, the number of queens and the dimensions of the chessboard (N x N
).Constraints:
1 <= N <= 10
Output:
Q
represents a queen, and.
represents an empty space.Test Cases:
Example 1:
Example 2:
Example 3:
Request:
Kindly assign this issue to me and add the
Hacktoberfest
label as I would like to contribute as part of Hacktoberfest 2024. Thank you!Let me know if you'd like to make any adjustments!
The text was updated successfully, but these errors were encountered: