Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trwyant/perl-games-sudoku-general
Solve Sudoku and related puzzles
https://github.com/trwyant/perl-games-sudoku-general
games perl perl-module sudoku-solver
Last synced: about 2 months ago
JSON representation
Solve Sudoku and related puzzles
- Host: GitHub
- URL: https://github.com/trwyant/perl-games-sudoku-general
- Owner: trwyant
- Created: 2015-05-18T13:47:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T13:34:44.000Z (10 months ago)
- Last Synced: 2024-03-04T14:58:08.389Z (10 months ago)
- Topics: games, perl, perl-module, sudoku-solver
- Language: Perl
- Size: 248 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
- Contributing: CONTRIBUTING
- License: LICENSES/Artistic
Awesome Lists containing this project
README
Games-Sudoku-General is Copyright (C) 2005, 2006, 2008, 2011-2013 by
Thomas R. Wyant, IIIDESCRIPTION
Games::Sudoku::General is a module to solve the class of puzzle that
involves allocating symbols among sets such that no set contains more
than one of any symbol. Sudoku is the most common name for such
puzzles, though Number Place and Wasabi have also been used.Each puzzle is considered to be made up of a number of cells, each of
which is a member of one or more sets, and each of which may contain
exactly one symbol. The contents of a number of cells are gven, and the
problem is to deduce the contents of the rest of the cells.INSTALLATION
Most Perl users will want to install using their favorite of either
'cpan' or 'cpanp'. For either of these, installing
Games::Sudoku::General gets you everything. ActivePerl users will want
to use ActiveState's 'ppi', and install Games-Sudoku-General.If for some reason neither of these works for you, you can download the
distribution and expand it using something liketar -xzf Games-Sudoku-General-9.999.tar.gz
Users of MSWin32 (and perhaps other operating systems) may need to
convert the line endings in the expanded files from Unix to their native
system before proceeding.Then, issue one of the following two incantations:
perl Makefile.PL
make
make test
sudo make installor
perl Build.PL
./Build
./Build test
sudo ./Build installYou should substitute the appropriate program name for 'make', eg nmake
(typically) under MSWin32, or mms or mmk under VMS. See
ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe for a copy of
nmake for MSWin32 if you need it.Unix users may want to use 'su' rather than 'sudo' for the install.
Non-unix users may need to be logged in to an administrative or
otherwise privileged accout, and turn on privileges (if applicable) for
the install.Of course, since it's pure Perl, you can just expand the kit and drop
the .pm files into the Games/Sudoku directory (creating it if necessary)
in the appropriate place in your @INC directories.OS-specific notes exist for (at least) MacOS (meaning, Mac OS 9
and lower), MSWin32, and VMS. See the relevant README files for
details.LICENSING INFORMATION
This package is free software; you can redistribute it and/or modify it
under the same terms as Perl 5.10.0. For more details, see the full text
of the licenses in the directory LICENSES.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.