seedGame {sudokuAlt} | R Documentation |
Generate a random sudoku game starting point
seedGame(n = 3)
n |
Size of the game, n^2 x n^2 |
Generates a game with one instance of each symbol in random positions.
A sparse unsolved sudoku game
Bill Venables
set.seed(2345)
g <- seedGame(3)
sg <- solve(g) ## a completed random game
plot(sg)