Sudoku is a logic-based combinatorial number-placement puzzle. The objective is to fill a grid with digits 1 to 9 such that each column, row and box contains all the digits from 1 to 9.
If a Sudoku puzzle is filled correctly, what is the sum of all of the entries in the grid?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Since each column uses the values from 1 to 9, the sum of each column is 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = 4 5 .
Since there are 9 columns, the total sum is 9 × 4 5 = 4 0 5 .