Consider a $n^2 \times n^2$ grid sudoku. Define a clue to be composed of a coordinate $x$ and $y$ of the grid and a value $z$. The goal is given $n$ and a set of clues, to find one solution to the sudoku problem.
Let $R$ be the number of clues of the problem.
- if $R = 0$, the problem is polynomial since it can be resolved in $O(1)$: fill the first line with $1, 2, 3, \dots, n^2$, the second line with $n, n+1, \dots, n^2, 1, 2, \dots, n-1$ until the last line with $n^2-n, \dots, n^2, 1, 2, \dots, n^2-n$.
- if $R \geq n^4-a$ for a constant $a$, the problem is polynomial too: use brute force and try $n$ different values for the $a$ empty coordinate: $O(n^a)$.
What about other $R$? For which $R$ the problem is polynomial? And for which it is NP-Hard?