Sudoku solver based on the initial work of Michael Kennett
cinemast/sudoku
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
LICENSE: This work has been placed into the Public Domain by Michael Kennett (July 2005), and may be freely used by anybody for any purpose whatsoever. No warranty, of any kind, applies to this work. ** Sudoku Installation Notes (Unix/Minix) As the root user, or with the appropriate permissions, type: $ make install This will compile and install the sudoku program into /usr/bin, install the manpage into /usr/man/man6, and the template file into /usr/share/sudoku. It is necessary to edit the Makefile if you want to install the program into a different location, or on some systems, to set an alternative path for the man page. Dependencies: Sudoku depends on curses library. For Windows the win32 folder contains the necessary source files. On Linux, the courses library is needed. Home page: http://invisible-island.net/ncurses/ncurses.html Currently it can be 'apt-get install'-ed as libncurses5 or libncurses5-dev. Other possible way of getting it is to install the CDK. CDK stands for "Curses Development Kit", and CDK sits on top of the curses library. This package contains the header files and development libraries for the CDK library. (Home page: http://invisible-island.net/cdk/) Under Minix it is recommended that /etc/termcap be edited to add 'bell' capability (see termcap(5)). This can be done by adding a record for 'bl' in the minix console entry: mx|minix|minix console:\ :am:xn:bs:\ :co#80:li#25:\ :bl=^G:\ <<<< ADD THIS :is=\E[0m:\ :cd=\E[0J:cl=\E[H\E[0J:\ [etc...] ** Sudoku Installation Notes (Windows) The source distribution provides Microsoft Visual Studio (v6) project files, along with a simple NMAKE makefile suitable for the Microsoft compilers. The distribution does not include makefiles for other compilers (e.g. Borland, Open Watcom, etc...), but you should have no difficulty in using these compilers. The Microsoft Visual Studio files are contained in the VC6 subdirectory, and the workspace file is VC6\sudoku.dsw. Open the workspace, and compile the project. There is an updated workspace in the VC2012 directory, and another makefile in MinGW folder for compiling with MinGW. Alternatively, from the command line, enter: > nmake /f Makefile.msc to build the program. Note that there is no install script for the Windows distribution, and the program is configured to search for the template file, at runtime, in the current working directory of the process.
About
Sudoku solver based on the initial work of Michael Kennett
Resources
Stars
Watchers
Forks
Packages 0
No packages published