Viewing 6 posts - 1 through 6 (of 6 total)
radek.celuch (5/24/2016)
What about solving a sudoku where there are no combos? Like this one?
Yes, I am stuck on some hardest ones, there are some extra logic needs to be applied,...
June 22, 2016 at 4:16 pm
Hi Radek,
Thanks for reading this post. Seems you've done a lot on this already. I am really happy that my thoughts can contribute a little bit to your solution. I...
April 6, 2016 at 7:41 am
Hi brad.mason5,
Thanks very much for your comments. You are right. I will take a look see if I can fix this.
Regards,
Kevin
June 12, 2015 at 10:18 pm
Following is a procedural approach written in Javascript with a HTML wrapper:
<HTML><script type="text/javascript">
var currentCell, direction;
function Doit(){
currentCell=-1; direction = 1;
strSudoku=document.getElementById("Input").value;
a=strSudoku.split(''); // the working Sudoku array
b=strSudoku.split(''); // the original Sudoku array
for (i=0;...
June 12, 2015 at 2:41 pm
Another version of interest:
You might notice that, in the following update clause
UPDATEsdk SET Val=Val-(val & combo)
FROM#Sudoku AS sdk
JOIN#MapRange r on sdk.id =r.id
JOINx ON x.Range =r.Range AND Val...
June 12, 2015 at 2:27 pm
Sorry, a correction: in the last paragraph in the first section, it should be:
Its logic is straight forward, and does NOT use any "not exists" logic....
June 9, 2015 at 12:02 pm
Viewing 6 posts - 1 through 6 (of 6 total)