SudokuCurses Code
Brought to you by:
davekinney
File | Date | Author | Commit |
---|---|---|---|
autom4te.cache | 2011-01-22 | davekinney | [r5] |
src | 2011-01-22 | davekinney | [r5] |
AUTHORS | 2011-01-22 | davekinney | [r5] |
COPYING | 2011-01-22 | davekinney | [r5] |
ChangeLog | 2011-01-22 | davekinney | [r5] |
INSTALL | 2011-01-22 | davekinney | [r5] |
Makefile.am | 2011-01-22 | davekinney | [r5] |
Makefile.in | 2011-01-22 | davekinney | [r5] |
NEWS | 2011-01-22 | davekinney | [r5] |
README | 2011-01-22 | davekinney | [r5] |
aclocal.m4 | 2011-01-22 | davekinney | [r5] |
config.h.in | 2011-01-22 | davekinney | [r5] |
configure | 2011-01-22 | davekinney | [r5] |
configure.ac | 2011-01-22 | davekinney | [r5] |
depcomp | 2011-01-22 | davekinney | [r5] |
install-sh | 2011-01-22 | davekinney | [r5] |
missing | 2011-01-22 | davekinney | [r5] |
<ssolver -- Sudoku Solver> Copyright (C) 2011 Dave Kinney This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. NAME ssolver – Sudoku Solver SYNOPSIS ssolver DESCRIPTION ssolver is a sudoku solver for simple to medium puzzles. It takes no arguments, all functionality is from commands in the program. 'Q' or 'q' Abort from the entire program or importing. 'RETURN' Solve the entered puzzle. 'ESC' Clear the number under the cursor 'R' or 'r' Reset the entire board. 'I' or 'I' Import a file. 'A' or 'a' After a file is selected, use the A command to solve all the puzzles in the file.openssh Use the arrow keys to navigate the boxes and menus, if in the board, the cursor will wrap to the next or previous column or row BUGS Most errors do not explain themselves because they cause segmentation faults before they can be checked for. Cannot solve any puzzle. Dependant on character encoding. Must run in a terminal equal to or larger than 120x40. AUTHORS Written completely by Dave Kinney using the curses library.