Press the button and watch the solver do its thing. Unlike the regular sudoku solver, this one does not let you specify starting grid values. You can keep pressing the button to iterate through all possible NxN sudoku answers.
The non-grayscale colors represent unique values, and, as this is a soduku (albeit an NxN one), there will be one unique color per each sub-grid, horizontal and vertical. Grayscale colors, on the other hand, represent the number of possible values remaining for a given cell - the darker the color, the fewer variables are left.
You can try sudokus of different sizes, change the variable (cell-selection) and value ordering heuristics, adjust constraint propagation algorithm and try different all-different constraint types for modeling the problem. You can also enable fast solving, and backjumping.
I'll be writing more about what these are on the blog, for now here is a quick summary for the non-obvious bits:
Unlike the standard 9x9 sudoku, which is computationally uninteresting, this one shows solving of beefier problems. The default one is 25x25, and you can try all grids up to 36x36. While bigger grids can be solved, as the backend is running on a small VM, and the network usage goes up considerably as the grid size grows, I've restricted the grids to be no bigger than 36x36, which already contains 1296 variables, each with 36 possible values, resulting in quite a few possible states.
Note: if you do try out the 36x36 sudoku, to avoid overloading the server requests may be throttled. You also will only be able to search for the first solution on this larger instance.
Each run is time limited, to avoid overwhelming the server.
I've included a couple of links below, feel free to reach out to me with ideas, suggestions or other feedback.