Gnu Sudoku Guide

rules

simply try to fill the empty cells such a way that each character occurs exactly once each row, each column and each square.

tips

sudoku file format

example 1

Very basic format consisting of lines containing only the cell data:
-1-4-9-6-
--8---1--
------7--
3-2-----4
-75-4-93-
4-----5-7
--73--4--
--1---6--
-6-9-5-8-

example 2

More sophisticated format consisting of lines containing the cell data in a sudoku structure:
#3x3 Sudoku
+---+---+---+
|-4-|2-1|-6-|
|---|4-7|---|
|-15|---|-4-|
+---+---+---+
|-39|---|7--|
|---|1-2|---|
|-72|6--|1--|
+---+---+---+
|-83|---|-9-|
|---|8-4|3--|
|-2-|9-5|-7-|
+---+---+---+

The first line can contain the sudoku type ( 2x2, 3x3, 4x4 or 5x5 ) the # character in front is mandatory.

Last modified: Tue Sep 6 21:19:39 CEST 2005