How can I generate Sudoku puzzles?

Posted by user223150 on Game Development See other posts from Game Development or by user223150
Published on 2013-05-25T13:07:30Z Indexed on 2014/06/05 9:46 UTC
Read the original article Hit count: 176

I'm trying to make a Sudoku puzzle generator. It's a lot harder than I expected and the more I get into it, the harder it gets!

My current approach is to split the problem into 2 steps:

  1. Generate a complete (solved) Sudoku puzzle.
  2. Remove numbers until it's solveable and has only 1 solution.

In step 1, since I'm using a brute force methods, I'm facing some run time issues. Is there an optimal way of filling in a complete Sudoku puzzle?

In step 2, what kind of algorithm should I use to "puzzlize" a solved sudoku?

© Game Development or respective owner

Related posts about algorithm

Related posts about puzzle