Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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/

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)