Email or username:

Password:

Forgot your password?
1 post total
konsti

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.

github.com/konstin/sudoku-in-p

Lucas Werkmeister

@konstin konsti stop doing cursed python things challenge (impossible)

Frost Ming

@konstin This is not a new idea
github.com/frostming/sodoku-so
In this repo, I referenced the original article.

Go Up