Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahdihasnat/queens-by-linkedin-solver
Solver for https://www.linkedin.com/games/queens/
https://github.com/mahdihasnat/queens-by-linkedin-solver
opencv ortools
Last synced: 17 days ago
JSON representation
Solver for https://www.linkedin.com/games/queens/
- Host: GitHub
- URL: https://github.com/mahdihasnat/queens-by-linkedin-solver
- Owner: mahdihasnat
- Created: 2024-09-15T02:33:58.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-10-20T15:31:56.000Z (28 days ago)
- Last Synced: 2024-10-20T17:42:33.278Z (27 days ago)
- Topics: opencv, ortools
- Language: Jupyter Notebook
- Homepage:
- Size: 4.03 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Rule of the queen(linkedin version) game:
- One queen in each row
- One queen in each column
- One queen in each color region
- No two queens can touch by corners# How to solve:
- Capture a screenshot of the board (better if empty)
- Run the jupyter notebook with the modified image path
- See the soltion at the end of the notebook
- Star the repo if you like it# Setup:
- Create virtual environment: `python -m venv venv`
- Activate virtual environment: `source venv/bin/activate`
- Install requirements: `pip install -r requirements.txt`
- Run the jupyter notebook: `jupyter lab`# Example:
![](./attachments/transformation_visualization.png)