Sudoku Solver
=============

simple 360 byte DOS sudoku solver. Not optimized yet. Program reads input
from stdin and writes all solutions to stdout.

input must be in format like this:
	x 2 x 1 x x x x x
	5 x x x x x x 2 x
	x x 1 9 x x x x 8
	x 3 x x x 4 9 x x
	6 x x 7 x x x 1 x
	4 x x x 8 x x 7 x
	x x 9 3 6 x x x 1
	x 8 x 4 7 x 6 x x
	x x x x x x x x x

with no space after last character in line. all input behind this
is ignored.

as example, run it with:
	ss.com <in >out

written by vid
vid@inMail.sk