https://github.com/themysterysolver/9-queens-solver
"Chrome extension to solve 9 QUEENS of linkedin"
https://github.com/themysterysolver/9-queens-solver
backtracking chrome-extension daily-puzzle-game js linkedin queens-problem queens-solver
Last synced: 6 months ago
JSON representation
"Chrome extension to solve 9 QUEENS of linkedin"
- Host: GitHub
- URL: https://github.com/themysterysolver/9-queens-solver
- Owner: themysterysolver
- Created: 2025-03-21T18:33:33.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-25T08:32:20.000Z (6 months ago)
- Last Synced: 2025-03-25T09:32:49.435Z (6 months ago)
- Topics: backtracking, chrome-extension, daily-puzzle-game, js, linkedin, queens-problem, queens-solver
- Language: JavaScript
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## π―QUEEN'S SOLVER LINKEDIN
- This is a *daily game* in linkedin I recently got playing.
- This chrome extension solves the `queen's game`.
- So what does this repo do?
- I have created `2` **extensions**,
- The one you can use while you are not signed in `QUEENS_EXTENSION`π
- Then the next one where you have can use when u have logged in ***linkedin***,thne use `QUEENS_EXTENSION_V2`π
- works with any size
- Follows the below rules
## πGame rules
- **RULE-1:** A queen should be placed in every `row` ,`col` and `color grid` but just ***1***.
- **RULE-2:** No `2` queens can be adjacent (that is within `8` adjacent squares by contact) and they are allowed to be in same diagonal though unlike traditonal queen's algo.
## π₯DEMO
https://github.com/user-attachments/assets/5c4442c3-610b-418c-86cc-319a50f3196c## HOW TO USE MY EXTENSION?π§
- Download `QUEENS_EXTENSION` or `QUEENS_EXTENSION_V2` on your need.
- Go to `chrome://extensions/`
- Then on *top-right* enable ***developer mode***.
- Then on *top-left* click ***Load unpacked*** browse the path where have downloaded my folder.
- Click it.
- Now use it as per demo.
## π‘WHY THIS REPO?
- I love shortcuts and smart work.πΊ
- I wanted code *backtracking*,I am crazy on DSA.π
- Got inspiration from leetcode[51.N-QUEENS](https://leetcode.com/problems/n-queens/description/)π
- To learn how ***extension works!!*** ποΈ
- How to scrape and search in a web.π## REPO STRCUTURE
```
βββ PROTOTYPE
β βββ TEST CASES
β βββ prototype.js
βββ QUEENS_EXTENSION
βββ QUEENS_EXTENSION_V2
β βββ manifest.json
β βββ popup.html
β βββ queens.js
βββ the_making.md
```
- `PROTOTYPE/prototype.js` has the backtracking algo
- `PROTOTYPE/TEST CASES` contain the test-cases which i got for validation.