-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new Project - N_Queen and also updated index.js file in Main (#525
) ## Related Issue [Cite any related issue(s) this pull request addresses. If none, simply state "None”] write issue no. here ## Description [Please include a brief description of the changes or features added] ## Type of PR - [ ] Bug fix - [ ] Feature enhancement - [ ] Documentation update - [ ] Security enhancement - [ ] Other (specify): _______________ check in issue by entering [X] in boxes ## Screenshots / Videos (if applicable) [Attach any relevant screenshots or videos demonstrating the changes] ## Checklist - [ ] I have performed a self-review of my code. - [ ] I have read and followed the Contribution Guidelines. - [ ] I have tested the changes thoroughly before submitting this pull request. - [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have followed the code style guidelines of this project. - [ ] I have checked for any existing open issues that my pull request may address. - [ ] I have ensured that my changes do not break any existing functionality. - [ ] Each contributor is allowed to create a maximum of 4 issues per day. This helps us manage and address issues efficiently. - [ ] I have read the resources for guidance listed below. - [ ] I have followed security best practices in my code changes. check in issue by entering [X] in boxes ## Additional Context [Include any additional information or context that might be helpful for reviewers.] ## Contribution Guidelines Thank you for considering contributing to our project! To ensure smooth collaboration and effective contribution management, please adhere to the following guidelines: ### Issue Creation 1. **Limit on Issues:** - Each contributor is allowed to create a maximum of **4 issues per day**. This helps us manage and address issues efficiently. ### Contribution Levels 2. **Basic Contributions:** - This project is primarily focused on documentation. Most of the setup has been completed, so contributors will generally need to work on basic code tasks, such as writing tests. - For these tasks, issues will be assigned the **Easy** label. 3. **Acknowledging Hard Work:** - If a contributor puts in significant effort on a task, the issue will be upgraded to **Medium**. This is our way of recognizing and appreciating extra effort. 4. **Feature Additions and Component Work:** - Contributors working on new features or components using JSX/TSX will be assigned a level based on the complexity and quality of their work. - The more complex and valuable the contribution, the higher the level assigned. ### Level Definitions - **Easy:** - Tasks are straightforward, such as fixing minor bugs, writing tests, or making simple documentation updates. - **Medium:** - Tasks require more effort, such as addressing complex bugs, improving existing features, or making substantial documentation improvements. - **Hard:** - Tasks are highly complex and involve significant new feature development, major refactoring, or extensive contributions to the project’s core components. We look forward to your contributions and appreciate your effort in helping us improve the project!
- Loading branch information
Showing
4 changed files
with
249 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>N-Queens Game</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
|
||
<h1>N-Queens Game</h1> | ||
|
||
<div class="borad-details"> | ||
<div class="board-size"> | ||
<label for="boardSize">Choose Board Size (N):</label> | ||
<input type="number" id="boardSize" min="4" value="4"> | ||
</div> | ||
<div class="start-reset-button"> | ||
<button id="startGame">Start Game</button> | ||
</div> | ||
</div> | ||
|
||
<button id="resetGame" class="reset-button" style="display: none;">Reset Game</button> | ||
<p id="message"></p> | ||
<div id="gameBoard"></div> | ||
|
||
</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
|
||
|
||
const startGameButton = document.getElementById("startGame"); | ||
const resetGameButton = document.getElementById("resetGame"); | ||
const boardInput = document.getElementById("boardSize"); | ||
const board = document.getElementById("gameBoard"); | ||
const message = document.getElementById("message"); | ||
|
||
let queens = []; | ||
|
||
startGameButton.addEventListener("click", startGame); | ||
resetGameButton.addEventListener("click", resetGame); | ||
|
||
function startGame() { | ||
const n = parseInt(boardInput.value); | ||
if (isNaN(n) || n < 4) { | ||
alert("Please enter a valid board size (minimum 4)."); | ||
return; | ||
} | ||
|
||
resetGame(); | ||
|
||
board.style.gridTemplateColumns = `repeat(${n}, 60px)`; | ||
board.innerHTML = ""; | ||
message.textContent = ""; | ||
|
||
for (let i = 0; i < n * n; i++) { | ||
const square = document.createElement("div"); | ||
square.classList.add("square"); | ||
square.addEventListener("click", () => placeQueen(i, n)); | ||
board.appendChild(square); | ||
} | ||
|
||
queens = []; | ||
startGameButton.style.display = "none"; | ||
resetGameButton.style.display = "inline-block"; | ||
} | ||
|
||
function placeQueen(index, n) { | ||
const row = Math.floor(index / n); | ||
const col = index % n; | ||
|
||
if (queens.some(([r, c]) => r === row || c === col || Math.abs(r - row) === Math.abs(c - col))) { | ||
message.textContent = "Invalid placement! Queens are attacking each other. Try again."; | ||
message.classList.add("error"); | ||
highlightConflicts(row, col, n); | ||
return; | ||
} | ||
|
||
queens.push([row, col]); | ||
const squares = document.querySelectorAll(".square"); | ||
squares[index].innerHTML = `<span class="queen">♛</span>`; | ||
message.textContent = ""; | ||
|
||
if (queens.length === n) { | ||
message.textContent = "Congratulations! You've placed all queens safely!"; | ||
message.classList.remove("error"); | ||
} | ||
} | ||
|
||
function highlightConflicts(row, col, n) { | ||
const squares = document.querySelectorAll(".square"); | ||
squares.forEach((square, index) => { | ||
const r = Math.floor(index / n); | ||
const c = index % n; | ||
|
||
if (r === row || c === col || Math.abs(r - row) === Math.abs(c - col)) { | ||
square.classList.add("highlight"); | ||
} else { | ||
square.classList.remove("highlight"); | ||
} | ||
}); | ||
} | ||
|
||
function resetGame() { | ||
board.innerHTML = ""; | ||
queens = []; | ||
message.textContent = ""; | ||
message.classList.remove("error"); | ||
startGameButton.style.display = "inline-block"; | ||
resetGameButton.style.display = "none"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
|
||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #121212; | ||
color: #ffffff; | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.container { | ||
max-width: fit-content; | ||
margin: 20px auto; | ||
padding: 20px; | ||
background: #1e1e2f; | ||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); | ||
border-radius: 15px; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5em; | ||
color: #ff6347; | ||
margin-bottom: 20px; | ||
} | ||
|
||
label { | ||
font-weight: bold; | ||
font-size: 1.2em; | ||
color: #ffa07a; | ||
padding-bottom: 20px; | ||
} | ||
|
||
input[type="number"] { | ||
margin: 10px 0; | ||
padding: 8px; | ||
font-size: 1.1em; | ||
border: 2px solid #ffa07a; | ||
border-radius: 8px; | ||
width: 80px; | ||
text-align: center; | ||
background-color: #282c34; | ||
color: #f6f6f6; | ||
} | ||
|
||
button { | ||
background-color:#48bb78 ; | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
font-size: 1.2em; | ||
border-radius: 8px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
button:hover { | ||
background-color: #6cde9b; | ||
} | ||
|
||
#gameBoard { | ||
display: grid; | ||
margin: 20px auto; | ||
border: 4px solid #ff6347; | ||
background: #2c2f40; | ||
width: fit-content; | ||
border-radius: 10px; | ||
} | ||
|
||
.square { | ||
width: 60px; | ||
height: 60px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 24px; | ||
border: 0.5px solid #e4806e; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.square:nth-child(odd) { | ||
background-color: #495057; | ||
} | ||
|
||
.square:nth-child(even) { | ||
background-color: #343a40; | ||
} | ||
|
||
.queen { | ||
font-size: 32px; | ||
color: #ffa07a; | ||
pointer-events: none; | ||
} | ||
|
||
#message { | ||
font-size: 1.4em; | ||
font-weight: bold; | ||
margin-top: 20px; | ||
color: #48bb78; | ||
} | ||
|
||
#message.error { | ||
color: #e53e3e; | ||
} | ||
|
||
.highlight { | ||
background-color: rgba(229, 62, 62, 0.6); | ||
} | ||
|
||
.reset-button { | ||
background-color: #ff6347; | ||
margin-top: 10px; | ||
padding: 10px 20px; | ||
color: #fff; | ||
border: none; | ||
border-radius: 8px; | ||
font-size: 1.2em; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
|
||
} | ||
|
||
.reset-button:hover { | ||
background-color:#f34b2e; | ||
} | ||
|
||
.board-details { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.board-size{ | ||
padding-bottom:20px; | ||
} | ||
|