I've received a lot of interesting comments and questions from Sudoku fans over the last few years and this page
is where I try to answer them. I'm also directing Str8ts feedback here. Please feel free to drop me a note on the side of the page. Or you can email me directly at andrew@str8ts.com.
Post a Comment or Question here...
Thursday 6-Mar-2025
... by: RedNectar, Australia
On a recent puzzle, (link) the sudoku solver found an XY-Chain that was described as
I have no idea how to interpret the + and - notation, and am struggling to find where this is explained anywhere on the wiki.
Just a link to the explanation would be great!
TIA RedNectar
Andrew Stuart writes:
Quite right. I thought there was something somewhere but must have got moved away. I’ve added a section on this page where chains first show up
Wednesday 5-Mar-2025
... by: Tom, North America
Importing a plaintext puzzle looks to join numbers in adjacent lines together, resulting in an incomplete set. For example, two rows (newline separators) :
1 2 3 ... 13 2 3 1 ...
will result in 1 2 3 ... 132 3 1 ... i.e. the 13 and 2 are concatenated.
Function import_user_sudoku() in Javascript file sudoku4.js replaces newlines and tabs with empty strings:
As generic white space characters, I'd like to suggest replacing them with space characters. This would keep the numbers separated for the parser. Might not hurt to add '\r' to the replacement, as well.
https://www.sudokuwiki.org/js/sudoku4.js?v=2.75
Thank you!
Andrew Stuart writes:
Great request, happy to oblige. Refresh the solver page and try now
Tuesday 4-Mar-2025
... by: Kai, Germany
i am not sure about the rules concerning b and bx str8ts, so fe if you have got one black cell in one box , does that mean that either the 1 or the 9 cannot be in the box, or is it possible 1234 and 6789?
best regards
Kai
Andrew Stuart writes:
Could be any number. Depends on the str8ts in the rows and columns. The constraint of 1 to 9 in the box is maximally 1 to 9 but is not a 'straight' itself
Sunday 2-Mar-2025
... by: Jacques Guillot, Mandeville, Louisiana
Thank you for your site - I have had unbelievable joy over years using it.
I might have overlooked it, but does your unique rectangle page have to me one of the most basic use cases? Three bivalue squares xy and one trivalue square xyz, so the trivalue square must be z.
I love unique rectangles, but I think the technique is not respected in some circles, because it is not “pure logic.” Do you have any comments?
Again, tremendous love, gratitude, and respect to you!
Jacques
Andrew Stuart writes:
Good question and thanks for the kind words ;) Sounds like it would be captured by Type 1 But also sounds like Bi-Value Universal Grave I disagree with the non-UR people. To be a Sudoku puzzle it must have one solution – otherwise it is a different beast and we’re not playing the same game. If so, let’s use logic
Friday 21-Feb-2025
... by: A random stranger, Earth
Der Mr. Stuart, I've been enjoying 1 to 25 as of late. However, there are several things which I've noticed which I consider rather unfortunate: -on mobile in portrait mode there isn't realy a way to go to other places on the site (contrary to this domain, where you can use the page Index link to find your way around) -The Puzzles don't seem to be ordered in order of difficulty. Today, for example, Puzzles 2-4 solved pretty easy for me, while Puzzles 1 is so far unsolved. -particularely bad together with the previous point and contrary to e.g. the sudoku player, the player for 1-25 doesn't seem to save partial progress so I can always come back later. Kind regards, a random stranger
Andrew Stuart writes:
Good points, I will fix these Regards the grade I don't actually know how to evaluate their difficulty. I've assumed because the puzzle is small and finite the grade range isn't huge. I do know how to test for there being one solution as that's an important puzzle criteria. But get back to me if you have grading ideas. Edit 24-Feb: Progress saving done; CSS done to show "Page Index" on mobile
Monday 17-Feb-2025
... by: Boris, Croatia
Dear Mr. Stuart, first I want to praise the quality and scope of the Sudokuwiki, really impressing!
I am retired, so I don't have much idle time and I limit my activity to the basic sudoku, not even the very tough, just moderate ones.
I purchase printed brochures with sudoku puzzles, enter them im your solver to print them and solve on the paper. In last several months I had problems with printing the sudoku with given numbers only, instead of printing empty cells blank, solver fills them with all nine candidates, distorting the cells.
To avoid this problem, I start solving the sudoku on-line as far as I can without writing the candidates, then choose the option "Automatically clear" and repeat the last solved candidate to obtain the real remaining candidates and then print the sudoku with them.
Can you help me with this problem? Why empty cells can't be really empty?
Once again, thank you for running this excellent site!
Kind regrds, Boris Halasz, Zagreb, Croatia
Andrew Stuart writes:
Very glad you are enjoying the site. Yes I've tried to make the print mirror the solver as much as possible. People like to set up candidates and then proceed manually. To print without candidates untick “Shown” Send me a screen shot of anything distorted. I would love to fix that
Saturday 15-Feb-2025
... by: Yannick, Germany
Thank you so much for your Killer Sudoku Solver, just helped me after I got stuck for an hour while also teaching me something!
Andrew Stuart writes:
Very glad to hear that! Good luck wth your next one ;)
I got stuck on this NYT sudoku so I entered it in your solver. But your solver took some steps and then got stuck looking for naked pairs/triples (it says "wait") and it is no longer possible to take any steps
Andrew Stuart writes:
Give it a go now. Works for me this morning. I am still trying to understand what causes this. Sometimes it is deliberate as when I’m replacing the binary with a new version. Sometimes the server is busy. But I’ve seent go to 100% cpu as well.
Saturday 1-Feb-2025
... by: jdrano, michigan
I love your killer Sudoku solver. I usually make a mistake because of the notes in the small squares I'm working in. I can read the notes because they are clear(better than my handwriting...lol). In general; hands down; this site is best I've worked with.
Andrew Stuart writes:
Many thanks, kind words!
Saturday 25-Jan-2025
... by: Warren Jobs, USA
import a sudoku works once for me if I use paste. when I past another it says only 29 characters entered although there were 81. the first 52 characters in line 1 are ignored. I have tried this in 3 different browsers. same results in all
Andrew Stuart writes:
Can you send me what you are trying to paste in? Will be formats I have not anticipated.
Thursday 6-Mar-2025
... by: RedNectar, Australia
-3[B8]+6[B8]-6[G8]+7[G8]-7[J9]+9[J9]-9[E9]+1[E9]-1[H9]+3[H9]
I have no idea how to interpret the + and - notation, and am struggling to find where this is explained anywhere on the wiki.
Just a link to the explanation would be great!
TIA
RedNectar
I’ve added a section on this page where chains first show up
Wednesday 5-Mar-2025
... by: Tom, North America
1 2 3 ... 13
2 3 1 ...
will result in 1 2 3 ... 132 3 1 ... i.e. the 13 and 2 are concatenated.
Function import_user_sudoku() in Javascript file sudoku4.js replaces newlines and tabs with empty strings:
dstring=dstring.replaceAll('\t','');
dstring=dstring.replaceAll('\n','');
As generic white space characters, I'd like to suggest replacing them with space characters. This would keep the numbers separated for the parser. Might not hurt to add '\r' to the replacement, as well.
https://www.sudokuwiki.org/js/sudoku4.js?v=2.75
Thank you!
Tuesday 4-Mar-2025
... by: Kai, Germany
best regards
Kai
Sunday 2-Mar-2025
... by: Jacques Guillot, Mandeville, Louisiana
I might have overlooked it, but does your unique rectangle page have to me one of the most basic use cases? Three bivalue squares xy and one trivalue square xyz, so the trivalue square must be z.
I love unique rectangles, but I think the technique is not respected in some circles, because it is not “pure logic.” Do you have any comments?
Again, tremendous love, gratitude, and respect to you!
Jacques
Sounds like it would be captured by Type 1
But also sounds like Bi-Value Universal Grave
I disagree with the non-UR people. To be a Sudoku puzzle it must have one solution – otherwise it is a different beast and we’re not playing the same game. If so, let’s use logic
Friday 21-Feb-2025
... by: A random stranger, Earth
I've been enjoying 1 to 25 as of late. However, there are several things which I've noticed which I consider rather unfortunate:
-on mobile in portrait mode there isn't realy a way to go to other places on the site (contrary to this domain, where you can use the page Index link to find your way around)
-The Puzzles don't seem to be ordered in order of difficulty. Today, for example, Puzzles 2-4 solved pretty easy for me, while Puzzles 1 is so far unsolved.
-particularely bad together with the previous point and contrary to e.g. the sudoku player, the player for 1-25 doesn't seem to save partial progress so I can always come back later.
Kind regards, a random stranger
Regards the grade I don't actually know how to evaluate their difficulty. I've assumed because the puzzle is small and finite the grade range isn't huge. I do know how to test for there being one solution as that's an important puzzle criteria. But get back to me if you have grading ideas.
Edit 24-Feb: Progress saving done; CSS done to show "Page Index" on mobile
Monday 17-Feb-2025
... by: Boris, Croatia
first I want to praise the quality and scope of the Sudokuwiki, really impressing!
I am retired, so I don't have much idle time and I limit my activity to the basic sudoku, not even the very tough, just moderate ones.
I purchase printed brochures with sudoku puzzles, enter them im your solver to print them and solve on the paper. In last several months I had problems with printing the sudoku with given numbers only, instead of printing empty cells blank, solver fills them with all nine candidates, distorting the cells.
To avoid this problem, I start solving the sudoku on-line as far as I can without writing the candidates, then choose the option "Automatically clear" and repeat the last solved candidate to obtain the real remaining candidates and then print the sudoku with them.
Can you help me with this problem? Why empty cells can't be really empty?
Once again, thank you for running this excellent site!
Kind regrds, Boris Halasz, Zagreb, Croatia
Send me a screen shot of anything distorted. I would love to fix that
Saturday 15-Feb-2025
... by: Yannick, Germany
Sunday 9-Feb-2025
... by: John, Virginia
Load Sudoku: CLICK TO LOADSaturday 1-Feb-2025
... by: jdrano, michigan
Saturday 25-Jan-2025
... by: Warren Jobs, USA
Will be formats I have not anticipated.