With the data I would be interested in a graph of "qty solved" vs. "givens". Here is what I started so far (just a quick start):
- Code: Select all
givens qty solved
------- ------------
4 1
6 2
9 3
...
13 16
...
17 64
Here is a case where 4 givens solves one position:
- Code: Select all
1 - - - - - - - -
- - - 1 - - - - -
- - - - - - 2 3 -
- - - - - - - - -
- - - - - - - - -
- - - - - - - - -
- - - - - - - - -
- - - - - - - - -
- - - - - - - - -
And here is a case where 13 givens solves 16 positions:
- Code: Select all
- 4 - - - - - - -
- - - - - - - - -
- - - - 3 - - 5 -
- - - - - - 1 - -
3 - 2 - 6 - - - -
- - - - - 7 4 - 8
- 8 - - - 4 - - -
- - - - - - - - -
- - - - - - - 3 -
The data here is incomplete, and I'm not sure if best possible. Please jump in if anyone can add to it.