Questions tagged [sudoku]

Sudoku is a logic-based, combinatorial number-placement puzzle. The objective is to fill a $9\times9$ grid with digits so that each column, each row, and each of the nine $3\times3$ subgrids that compose the grid (also called "boxes", "blocks", "regions" or "subsquares") contain all the digits from $1$ to $9$. The puzzle setter provides a partially completed grid, which for a well-posed puzzle has a unique solution.

Sudoku is a logic-based, combinatorial number-placement puzzle. The objective is to fill a $9\times9$ grid with digits so that each row, column and the nine $3\times3$ subgrids that compose the grid (also called "boxes", "blocks", "regions" or "subsquares") contain all the digits from $1$ to $9$. The puzzle setter provides a partially completed grid, which for a well-posed puzzle has a unique solution.

A completed Sudoku grid is a special type of Latin square with the additional property of no repeated values in any of the nine blocks (or boxes of $3\times 3$ cells). The relationship between the two theories is known, after it was proven that a first-order formula that does not mention blocks is valid for Sudoku if and only if it is valid for Latin squares.

The general problem of solving Sudoku puzzles on $n^2\times n^2$ grids of $n\times n$ blocks is known to be NP-complete

90 questions
1
vote
1 answer

Do there exist sudoku's with clues that only contain $1$'s and $2$'s

I read this article saying it was mathematically proven that if a sudoku has a unique solution, then it has at least $17$ initial hints. In which case, is it possible to have a sudoku with $17$ initial hints that consist of nine $1$'s and eight…
kam
  • 1,255
0
votes
1 answer

What is the maximum number of given numbers that still produces a minimal Sudoku?

The minimum number of given numbers that produce a valid Sudoku with a unique solution has been proven to be $17$, so it got me thinking, what is the maximum number of given numbers that still produces a minimal Sudoku? A minimal Sudoku puzzle is…
Ghi102
  • 19
0
votes
1 answer

Maximum Sudoku pencil marks needed

Most Sudoku mobile/video games have a pencil feature which lets you record a candidate in a given cell. Some of these let you pencil in all 9 candidates, and some only a few (3 - 5). The reduction in number of candidates that can be penciled in does…
0
votes
1 answer

Can a 9x9 sudoku with sum 45 and sum 285 of numbers squares of (rows,collunms,3x3) not be valid

Its a program that check a sudoku solution if it is correct. It checks Rows,collums,3x3 grids if sum is 45 (1+2+3...+9=45) Rows,collums,3x3 grids numbers in square if sum is 285 (1^2+2^2+3^2+...+9^2 = 285) Is any way to fool that program with not a…