Initial checkin of `Solo', the number-placing puzzle popularised by

the Times under the name `Sudoku'.

[originally from svn r5660]
This commit is contained in:
Simon Tatham
2005-04-23 16:35:28 +00:00
parent 134418abf7
commit 0c55b7e16f
5 changed files with 1565 additions and 9 deletions

2
list.c
View File

@ -24,6 +24,7 @@ extern const game netslide;
extern const game pattern;
extern const game rect;
extern const game sixteen;
extern const game solo;
const game *gamelist[] = {
&cube,
@ -33,6 +34,7 @@ const game *gamelist[] = {
&pattern,
&rect,
&sixteen,
&solo,
};
const int gamecount = lenof(gamelist);