Skip to content

Extended soduku solving #3034

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

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
resolved spelling of a variable
  • Loading branch information
edwinjosegeorge committed Oct 8, 2020
commit 8111f41b987fc080b18f3f2c33dad1d93b4cbb87
2 changes: 1 addition & 1 deletion backtracking/extendedsudokusolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def __str__(self):
if len(row_values)!=box_size**2:
print(f"Row length should be {box_size**2}")
continue
quesiton_grid.append(row_values)
question_grid.append(row_values)
i+=1
else:
box_size = 3
Expand Down