feat: Add Sudoku puzzle generator with configurable difficulty

This commit is contained in:
Andreas Koepf (aider) 2025-01-23 22:55:09 +01:00
parent fdf5e26e09
commit 87d1db2a1a
3 changed files with 168 additions and 1 deletions

View file

@ -6,7 +6,8 @@ from . import arithmetic
from . import algorithmic
from . import cognition
from . import data
from . import games
from . import logic
__version__ = "0.1.0"
__all__ = ["arithmetic", "algorithmic", "cognition", "data", "logic"]
__all__ = ["arithmetic", "algorithmic", "cognition", "data", "games", "logic"]