-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sudoku size could be variable to solve for example 4x4 or 16x16 sudokus #5
Comments
I've implemented variable sudoku sizes. Unfortunately 16x16 and 25x25 are really not working with the algorithm used here. See: |
What does "the algorithm is really slow" mean, are there any numbers? |
Yes, you've found a C&P error in S25X25, thanks! This is fixed in 16ffe37
Creating full matrices is still quick, creating riddles isn't (text output doesn't make sense):
I never got a riddle of a 16x16 or 25x25 run. I think the backtracking approach is not suitable for that since the runtime can grow exponentially with the dimension growth of the game. |
yep, but there is not really a performant alternative to backtracking, is there? |
@Lemkinator |
It would also be nice if the size could be variable to solve for example 4x4 or 16x16 sudokus...
Originally posted by @Lemkinator in #4 (comment)
The text was updated successfully, but these errors were encountered: