You can solve sudokus in python packaging.
Not not python code, python packages:
```
[project]
name = "sudoku"
version = "1.0.0"
dependencies = [
"sudoku_3_1 == 2",
"sudoku_5_7 == 6",
"sudoku_0_7 == 5"
...
]
```
and the installed packages are the solution.
@konstin konsti stop doing cursed python things challenge (impossible)
@konstin This is not a new idea
https://github.com/frostming/sodoku-solver
In this repo, I referenced the original article.
@konstin weeps in NP
@konstin better at solving sudoku than package constraints — cursed
@konstin you actually found something `pip` is good at?
@konstin pip can handle SAT? last time I tried, it couldn't even properly resolve two interdependent packages when you installed them in one invocation :-D
@konstin@mastodon.social I think you can even make it not depend on requirements.txt by putting the solution for that cell as a constant inside the package and the solution is printed just by importing every package and print out the constant.