2:59 am
drwho
Difficulty score 19. No green.
9:55 am
ElDubUC
Done, no green. Couldn't get on the website last night at 12 AM (central time), but I see no one else expressed the same problem. It must have come back by 1:30 AM or so.
10:01 am
ElDubUC
I don't think the rankings have been updated for yesterday's expert either, at least not yet.
11:17 am
Phil
ding, great medium puzzle
11:34 am
PandaBear
done! distractions on a saturday. Happy weekend to all!
1:11 pm
Marc
I lost the Java script that puts in the possible red and blue numbers into squares. Does anyone have that code?
10:58 pm
Pocketmole
Marc: Here's the code to enter "greens": javascript: for (i=1; i<=9; i++) { for (j=1; j<=9; j++) { if (grid[i][j].value == "") { ClearTinySquares(i,j); } } } for (i=1; i<=9; i++) { for (j=1; j<=9; j++) { if (grid[i][j].value != "") { var tmp_value = grid[i][j].value; for (k=1; k<=9; k++) { for (l=1; l<=9; l++) { if (grid[k][l].value == "") { if ((Math.ceil(i/3) == Math.ceil(k/3) && Math.ceil(j/3) == Math.ceil(l/3)) || i == k || j == l) { grid[k][l]["mini"][tmp_value] = -1; } } } } } } } for (i=1; i<=9; i++) { for (j=1; j<=9; j++) { if (grid[i][j].value == "") { for (k=1; k<=9; k++) { if (grid[i][j]["mini"][k] != -1) grid[i][j]["mini"][k] = 1; else grid[i][j]["mini"][k] = 0; } } } } PopulatePuzzle(grid); void(0);
11:02 pm
Pocketmole
The code to autofill greens and reds is really long and I was afraid it would clog the Chog, so I put it in my profile. Hope this is what you're looking for!
11:45 pm
UnikeTheHunter
DING. It did have a couple of pairs that were a bit hard to keep in mind at the same time.