sassyinpink Sudoku Player
Registered: 03/06/09
Posts: 1
|
|
|
Reply with quote | #1 |
Can the reset be used for one certain level? When I reset, all levels reset, I'd like the choice of which level I want to reset. __________________ Denise McAlexander |
| |
rjohnson_8ball
Sudoku Solver
Registered: 10/11/07
Posts: 23
|
|
|
Reply with quote | #2 | Actually, I wish each average could be be more like average of 100 (or 50) solves, something like this:
Code: const int NumSolves = 100;
double Average = 0.0;
if (Average == 0.0) Average = ThisTime;
else Average += (ThisTime - Average)/NumSolves;
Then there would be less of a reason to have a reset button. You can follow your progress week to week without using Reset.
EDIT: Actually, 20 would be a decent number in the above code, rather than 100.
__________________ myspace.com/rjohnson8ball |
| |