Popular recipes tagged "sudoku" but not "python"http://code.activestate.com/recipes/tags/sudoku-python/2010-07-18T11:31:10-07:00ActiveState Code RecipesSudoku Solver (Bruteforce) (Java)
2010-07-18T11:31:10-07:00st0lehttp://code.activestate.com/recipes/users/4174421/http://code.activestate.com/recipes/577314-sudoku-solver-bruteforce/
<p style="color: grey">
Java
recipe 577314
by <a href="/recipes/users/4174421/">st0le</a>
(<a href="/recipes/tags/java/">java</a>, <a href="/recipes/tags/sudoku/">sudoku</a>).
</p>
<p>A simple Sudoku Solver, use 0 for blank cells.</p>
Sudoku solver in functional-programming style (Python)
2010-04-23T12:35:13-07:00Arnau Sanchezhttp://code.activestate.com/recipes/users/4173270/http://code.activestate.com/recipes/577188-sudoku-solver-in-functional-programming-style/
<p style="color: grey">
Python
recipe 577188
by <a href="/recipes/users/4173270/">Arnau Sanchez</a>
(<a href="/recipes/tags/functional/">functional</a>, <a href="/recipes/tags/recursion/">recursion</a>, <a href="/recipes/tags/sudoku/">sudoku</a>).
Revision 10.
</p>
<p>A simple brute-force Sudoku solver written in functional-programming style. This code is not aimed for speed, the goal is to write a clear, compact and (hopefully) pedagogical functional solution.</p>
Brute-force sudoku solver (Python)
2009-04-23T18:33:56-07:00Sylvain Fourmanoithttp://code.activestate.com/recipes/users/4150902/http://code.activestate.com/recipes/576725-brute-force-sudoku-solver/
<p style="color: grey">
Python
recipe 576725
by <a href="/recipes/users/4150902/">Sylvain Fourmanoit</a>
(<a href="/recipes/tags/sudoku/">sudoku</a>).
Revision 4.
</p>
<p>This is a very simple, short Sudoku solver using a classic brute-force approach.</p>
<p>What makes it nice is the purely arithmetic one-liner computing the constraint c (the sequence of already used digits on the same row, same column, same block of a given cell).</p>
Sudoku solver/creator (Python)
2008-09-12T00:18:27-07:00Collin Stockshttp://code.activestate.com/recipes/users/4149235/http://code.activestate.com/recipes/576505-sudoku-solvercreator/
<p style="color: grey">
Python
recipe 576505
by <a href="/recipes/users/4149235/">Collin Stocks</a>
(<a href="/recipes/tags/just_for_fun/">just_for_fun</a>, <a href="/recipes/tags/puzzle/">puzzle</a>, <a href="/recipes/tags/sudoku/">sudoku</a>).
</p>
<p>This program can solve and create sudoku puzzles</p>