sudoku downloads for windows
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2525
Sudoku Generator (for Linux) 1.1
Free Sudoku for Linux (KDE/Qt version) generator has 3 levels of difficulties. You may print created Sudoku grid or play on computer screen. No instal... more>> <<less
Download (101KB)
Added: 2009-04-03 License: Freeware Price: Free
229 downloads
Top Downloads 2.0
Top Downloads provides a script that counts how many times a file has been downloaded. more>>
Top Downloads provides a script that counts how many times a file has been downloaded.
It keeps statistics of your downloads and can generate a TOP10 of your downloaded files. The administration function of this script allows you to delete, rename or change count numbers for your downloads.
It can check a directory that you specify for new files and add it to a database. Count numbers and TOP10 can be included into a HTML document.
Most web servers require SSI documents to have the extension .shtml or .shtm
For Apache web servers:
- AddType text/html .shtml
- AddHandler server-parsed .shtml
<<lessIt keeps statistics of your downloads and can generate a TOP10 of your downloaded files. The administration function of this script allows you to delete, rename or change count numbers for your downloads.
It can check a directory that you specify for new files and add it to a database. Count numbers and TOP10 can be included into a HTML document.
Most web servers require SSI documents to have the extension .shtml or .shtm
For Apache web servers:
- AddType text/html .shtml
- AddHandler server-parsed .shtml
Download (0.035MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
Downloader for X 2.5.7.1
Downloader for X is a tool for downloading files. more>>
Downloader for X is a tool for downloading files from the Internet via both HTTP and FTP with a powerful but userfriendly interface.
Downloader for X supports reconnecting and resuming on connection timeouts, has a download queue for multiple files, support for simultaneous downloads, and many other features for powerful downloading.
Main features:
- Supporting both FTP and HTTP protocols as well as HTTP and FTP proxy servers. SOCKS5 support is also included! Authentication on the proxy servers is supported too.
- The Program keep the logs of all download sessions that allows advanced user to monitor problems manualy according information from these logs.
- It allows users to manage their downloads in real time. User can pause, continue, move in queue, add new downloads and remove downloads manualy. User also can allow to remove completed or failed downloads automatically by the program.
- Recursive downloading via FTP as well as via HTTP is supported. Powerful Filters-manager allow advanced user to specify files which must to be downloaded and files which must to be skipped. Wildcards are supported for FTP downloads too.
- Ability to download in more than one connection per time. Usualy downloading using number of connections increases speed of downloading up to 300% and even more!
- Supporting of so called `Persistent connections increases speed of downloading due much less amount of `standing connection stages. With this feature D4X uses connections to the servers many times. Persistent connections over HTTP are supported automaticaly but persistent connections over FTP can be turned on by user (Do not send QUIT command option of FTP settings).
- Ability to limit download speed of separate file as well as for the whole program allows modem user browse through the Web and download files at the same time.
- Built-in Scheduller, URL-manager and Automatically adding allow advaced user to simplify managing downloads by various criterias.
- Multiqueued design, ability to run without X interface, ability to manage D4X via command line and many other features will satisfy anybody who find a time to learn this program.
Enhancements:
- bug fixes
<<lessDownloader for X supports reconnecting and resuming on connection timeouts, has a download queue for multiple files, support for simultaneous downloads, and many other features for powerful downloading.
Main features:
- Supporting both FTP and HTTP protocols as well as HTTP and FTP proxy servers. SOCKS5 support is also included! Authentication on the proxy servers is supported too.
- The Program keep the logs of all download sessions that allows advanced user to monitor problems manualy according information from these logs.
- It allows users to manage their downloads in real time. User can pause, continue, move in queue, add new downloads and remove downloads manualy. User also can allow to remove completed or failed downloads automatically by the program.
- Recursive downloading via FTP as well as via HTTP is supported. Powerful Filters-manager allow advanced user to specify files which must to be downloaded and files which must to be skipped. Wildcards are supported for FTP downloads too.
- Ability to download in more than one connection per time. Usualy downloading using number of connections increases speed of downloading up to 300% and even more!
- Supporting of so called `Persistent connections increases speed of downloading due much less amount of `standing connection stages. With this feature D4X uses connections to the servers many times. Persistent connections over HTTP are supported automaticaly but persistent connections over FTP can be turned on by user (Do not send QUIT command option of FTP settings).
- Ability to limit download speed of separate file as well as for the whole program allows modem user browse through the Web and download files at the same time.
- Built-in Scheduller, URL-manager and Automatically adding allow advaced user to simplify managing downloads by various criterias.
- Multiqueued design, ability to run without X interface, ability to manage D4X via command line and many other features will satisfy anybody who find a time to learn this program.
Enhancements:
- bug fixes
Download (1.5MB)
Added: 2007-02-19 License: Artistic License Price:
1015 downloads
Other version of Downloader for X
License:Freeware
Download Sort 2.5.7
Download Sort is a Firefox extension that automatically saves downloaded files to different directories. more>>
Download Sort is a Firefox extension that automatically saves downloaded files to different directories when using "Save Link As..." or "Save Image as..."
<<less Download (0.025MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
876 downloads
A Sudoku Solver in C 1.11
A Sudoku Solver in C is a console-based Linux program, written in C language, that solves Su Doku puzzles using deductive logic. more>>
A Sudoku Solver in C is a console-based Linux program, written in C language, that solves Su Doku puzzles using deductive logic. It will only resort to trial-and-error and backtracking approaches upon exhausting its deductive moves.
Puzzles must be of the standard 9x9 variety using the (ASCII) characters 1 through 9 for the puzzle symbols. Puzzles should be submitted as 81 character strings which, when read left-to-right will fill a 9x9 Sudoku grid from left-to-right and top-to-bottom. In the puzzle specification, the characters 1 - 9 represent the puzzle givens or clues. Any other non-blank character represents an unsolved cell.
The puzzle solving algorithm is home grown. I did not borrow any of the usual techniques from the literature, e.g. Donald Knuths "Dancing Links." Instead I rolled my own from scratch as a personal challenge. As such, its performance can only be blamed on yours truly. Still, I feel it is quite fast. On a 333 MHz Pentium II Linux box it solves typical medium force puzzles in approximately 800 microseconds or about 1,200 puzzles per second, give or take. On an Athlon XP 3000 it solves about 6,600 puzzles per sec. (Solving time is dependent upon degree of difficulty, so YMMV.)
Description of Algorithm:
The puzzle algorithm initially assumes every unsolved cell can assume every possible value. It then uses the placement of the givens to refine the choices available to each cell. I call this the markup phase.
After markup completes, the algorithm then looks for singleton cells with values that, due to constraints imposed by the row, column, or 3x3 region, may only assume one possible value. Once these cells are assigned values, the algorithm returns to the markup phase to apply these changes to the remaining candidate solutions. The markup/singleton phases alternate until either no more changes occur, or the puzzle is solved. I call the markup/singleton elimination loop the Simple Solver because in a large percentage of cases it solves the puzzle.
If the simple solver portion of the algorithm doesnt produce a solution, then more advanced deductive rules are applied.
Ive implemented two additional rules as part of the deductive puzzle solver. The first is subset elimination wherein a row/column/region is scanned for X number of cells with X number of matching candidate solutions. If such subsets (or tuples) are found in the row, column, or region, then the candidates values from the subset may be eliminated from all other unsolved cells within the row, column, or region, respectively.
The next deductive rule examines each region looking for candidate values that exclusively align themselves along a single row or column, i.e. a vector. If such candidate values are found, then they may be eliminated from the cells outside of the region that are part of the aligned row or column.
Note that each of the advanced deductive rules calls all preceeding rules, in order, if that advanced rule has effected a change in puzzle markup.
Finally, if no solution is found after iteratively applying all deductive rules, then we begin trial-and-error using recursion for backtracking. A working copy is created from our puzzle, and using this copy the first cell with the smallest number of candidate solutions is chosen. One of the solutions values is assigned to that cell, and the solver algorithm is called using this working copy as its starting point. Eventually, either a solution, or an impasse is reached.
If we reach an impasse, the recursion unwinds and the next trial solution is attempted. If a solution is found (at any point) the values for the solution are added to a list. Again, so long as we are examining all possibilities, the recursion unwinds so that the next trial may be attempted. It is in this manner that we enumerate puzzles with multiple solutions.
Note that it is certainly possible to add to the list of applied deductive rules. The techniques known as "X-Wing" and "Swordfish" come to mind. On the other hand, adding these additional rules will, in all likelihood, slow the solver down by adding to the computational burden while producing very few results. Ive seen the law of diminishing returns even in some of the existing rules, e.g. in subset elimination I only look at two and three valued subsets because taking it any further than that degraded performance.
Enhancements:
- Code optimization has resulted in a 30% increase in speed.
<<lessPuzzles must be of the standard 9x9 variety using the (ASCII) characters 1 through 9 for the puzzle symbols. Puzzles should be submitted as 81 character strings which, when read left-to-right will fill a 9x9 Sudoku grid from left-to-right and top-to-bottom. In the puzzle specification, the characters 1 - 9 represent the puzzle givens or clues. Any other non-blank character represents an unsolved cell.
The puzzle solving algorithm is home grown. I did not borrow any of the usual techniques from the literature, e.g. Donald Knuths "Dancing Links." Instead I rolled my own from scratch as a personal challenge. As such, its performance can only be blamed on yours truly. Still, I feel it is quite fast. On a 333 MHz Pentium II Linux box it solves typical medium force puzzles in approximately 800 microseconds or about 1,200 puzzles per second, give or take. On an Athlon XP 3000 it solves about 6,600 puzzles per sec. (Solving time is dependent upon degree of difficulty, so YMMV.)
Description of Algorithm:
The puzzle algorithm initially assumes every unsolved cell can assume every possible value. It then uses the placement of the givens to refine the choices available to each cell. I call this the markup phase.
After markup completes, the algorithm then looks for singleton cells with values that, due to constraints imposed by the row, column, or 3x3 region, may only assume one possible value. Once these cells are assigned values, the algorithm returns to the markup phase to apply these changes to the remaining candidate solutions. The markup/singleton phases alternate until either no more changes occur, or the puzzle is solved. I call the markup/singleton elimination loop the Simple Solver because in a large percentage of cases it solves the puzzle.
If the simple solver portion of the algorithm doesnt produce a solution, then more advanced deductive rules are applied.
Ive implemented two additional rules as part of the deductive puzzle solver. The first is subset elimination wherein a row/column/region is scanned for X number of cells with X number of matching candidate solutions. If such subsets (or tuples) are found in the row, column, or region, then the candidates values from the subset may be eliminated from all other unsolved cells within the row, column, or region, respectively.
The next deductive rule examines each region looking for candidate values that exclusively align themselves along a single row or column, i.e. a vector. If such candidate values are found, then they may be eliminated from the cells outside of the region that are part of the aligned row or column.
Note that each of the advanced deductive rules calls all preceeding rules, in order, if that advanced rule has effected a change in puzzle markup.
Finally, if no solution is found after iteratively applying all deductive rules, then we begin trial-and-error using recursion for backtracking. A working copy is created from our puzzle, and using this copy the first cell with the smallest number of candidate solutions is chosen. One of the solutions values is assigned to that cell, and the solver algorithm is called using this working copy as its starting point. Eventually, either a solution, or an impasse is reached.
If we reach an impasse, the recursion unwinds and the next trial solution is attempted. If a solution is found (at any point) the values for the solution are added to a list. Again, so long as we are examining all possibilities, the recursion unwinds so that the next trial may be attempted. It is in this manner that we enumerate puzzles with multiple solutions.
Note that it is certainly possible to add to the list of applied deductive rules. The techniques known as "X-Wing" and "Swordfish" come to mind. On the other hand, adding these additional rules will, in all likelihood, slow the solver down by adding to the computational burden while producing very few results. Ive seen the law of diminishing returns even in some of the existing rules, e.g. in subset elimination I only look at two and three valued subsets because taking it any further than that degraded performance.
Enhancements:
- Code optimization has resulted in a 30% increase in speed.
Download (0.025MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1332 downloads
Sudoku solver 0.1
Sudoku solver application was created for solving a Sudoku with a backtracking algorithm. more>>
Sudoku solver application was created for solving a Sudoku with a backtracking algorithm. Instead of using a 9 x 9 matrix, it extends the matrix to 10 x 36 (10 rows, 36 columns), storing information in the extra cells.
The last row is used for keeping track of how many cells, for the current column, are still available.
The columns 9-17 (0-based) are used for storing the numbers which are still available in rows 0-8.
The columns 18-26 are used for storing the numbers which are still available in columns 0-8.
The columns 27-35 are used for storing the numbers which are still available in each square (counting from left to right and from top to bottom).
<<lessThe last row is used for keeping track of how many cells, for the current column, are still available.
The columns 9-17 (0-based) are used for storing the numbers which are still available in rows 0-8.
The columns 18-26 are used for storing the numbers which are still available in columns 0-8.
The columns 27-35 are used for storing the numbers which are still available in each square (counting from left to right and from top to bottom).
Download (MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
1712 downloads
Downloads in Tab 0.0.5
Downloads in Tab is an extension which opens Downloads manager in tab from Tools menu. more>>
Downloads in Tab is an extension which opens "Downloads" manager in tab from Tools menu.
Opens "Downloads" manager in tab from Tools menu or automaticlly when a download starts, when in options you uncheck "Show the Downloads window when downloading a file"
To use tab, in Firefox Options dialog uncheck "Show the Downloads window when downloading a file"
To use window, in Firefox Options dialog check "Show the Downloads window when downloading a file"
To use neither, disable or remove this extension and in Firefox Options dialog uncheck "Show the Downloads window when downloading a file" which will restore original functioning.
<<lessOpens "Downloads" manager in tab from Tools menu or automaticlly when a download starts, when in options you uncheck "Show the Downloads window when downloading a file"
To use tab, in Firefox Options dialog uncheck "Show the Downloads window when downloading a file"
To use window, in Firefox Options dialog check "Show the Downloads window when downloading a file"
To use neither, disable or remove this extension and in Firefox Options dialog uncheck "Show the Downloads window when downloading a file" which will restore original functioning.
Download (0.003MB)
Added: 2007-07-25 License: MPL (Mozilla Public License) Price:
836 downloads
sudoku solver by darsie 1.6
sudoku solver by darsie is a console-based sudoku solver. more>>
sudoku solver by darsie project is a console-based sudoku solver.
sudoku solver by darsie is a console program that reads data from stdin (typically redirected from a file) and prints a possibly partial result. Definitive numbers are printed all over their fields.
Other fields contain the numbers that are not yet excluded.
Three solving rules are implemented and most sudokus are solved in a few milliseconds.
Usage:
sudoku<<less
sudoku solver by darsie is a console program that reads data from stdin (typically redirected from a file) and prints a possibly partial result. Definitive numbers are printed all over their fields.
Other fields contain the numbers that are not yet excluded.
Three solving rules are implemented and most sudokus are solved in a few milliseconds.
Usage:
sudoku<<less
Download (0.035MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1029 downloads
Strato Log Download 1.2
Strato Log Download is a small Perl script intended to download logfiles from Web accounts from Strato hosted sites. more>>
Strato Log Download is a small Perl script intended to download logfiles from Web accounts from Strato hosted sites.
The problem is that the normal download interface is interactive, and that only about six weeks are kept on the server. So without scripting, youre likely to lose valuable log information (at least I was unable and unwilling to remember to download the logfiles once every six weeks).
This script logs in via the SSL-encrypted web-interface and downloads the files without needing a web-browser (proxies are configurable via the https_proxy environment variable).
Note: For SSL support, you might need additional Perl modules since some distros dont include crypto stuff: either use IO::Socket::SSL or Net::SSL (in Crypt::SSLeay).
If an SSL module is missing, https access will not work.
Usage is very easy:
$ get-logfiles -p mypassword www.mysite.de > logfile.gz
Enhancements:
- Feature: a new logfile download protocol was necessary, because the web interface changed (thanks to J. Puchalla for telling me -- it would probably have gone unnoticed otherwise).
<<lessThe problem is that the normal download interface is interactive, and that only about six weeks are kept on the server. So without scripting, youre likely to lose valuable log information (at least I was unable and unwilling to remember to download the logfiles once every six weeks).
This script logs in via the SSL-encrypted web-interface and downloads the files without needing a web-browser (proxies are configurable via the https_proxy environment variable).
Note: For SSL support, you might need additional Perl modules since some distros dont include crypto stuff: either use IO::Socket::SSL or Net::SSL (in Crypt::SSLeay).
If an SSL module is missing, https access will not work.
Usage is very easy:
$ get-logfiles -p mypassword www.mysite.de > logfile.gz
Enhancements:
- Feature: a new logfile download protocol was necessary, because the web interface changed (thanks to J. Puchalla for telling me -- it would probably have gone unnoticed otherwise).
Download (0.006MB)
Added: 2005-10-24 License: Freely Distributable Price:
1460 downloads
Sudoku Tool 1.0
Sudoku Tool is a sudoku game that helps you to solve sudoku puzzles. more>>
Sudoku Tool is a sudoku game that helps you to solve sudoku puzzles. Sudoku Tool can generate puzzles randomly or puzzles can be entered manually.
Some of the features include random puzzle generation, pencil marks, and the ability to save games.
Manual Setup:
The game starts in initialization mode. In this mode, you are setting up the a puzzle that you got from a newspaper, online, ... You are manually setting up the puzzle.
To select a location, click a square with the left mouse button and type in the number you want to place 1-9, or 0 or space to remove a value you placed there previously. You can also change other values by simply typing a new number.
When you have the puzzle set up the way you want, click the Start Game button to start playing.
Random Game:
To have a game randomly generated for you, click the Setup New Game button. A new window pops up asking you to select either "Manual" or "Random". Select "random" and a new game will appear.
To build, use:
make -f Makefile.[system]
<<lessSome of the features include random puzzle generation, pencil marks, and the ability to save games.
Manual Setup:
The game starts in initialization mode. In this mode, you are setting up the a puzzle that you got from a newspaper, online, ... You are manually setting up the puzzle.
To select a location, click a square with the left mouse button and type in the number you want to place 1-9, or 0 or space to remove a value you placed there previously. You can also change other values by simply typing a new number.
When you have the puzzle set up the way you want, click the Start Game button to start playing.
Random Game:
To have a game randomly generated for you, click the Setup New Game button. A new window pops up asking you to select either "Manual" or "Random". Select "random" and a new game will appear.
To build, use:
make -f Makefile.[system]
Download (1.5MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1164 downloads
Download Machine 0.2
Download Machine provides a noninteractive, nongraphical, pure Java batch file downloader. more>>
Download Machine provides a noninteractive, nongraphical, pure Java batch file downloader.
Download Machine is pure Java daemon that watches queue files for changes. If a new entry is available, DM will download it. Queue files are just URL lists. DM fully supports the HTTP, FSP, and FTP protocols.
Main features:
- Design goals
- Non graphical
- Non interactive
- Relieable downloads
- Queued downloads
- Portability (uses Java)
- Simple to use
- Resume interrupted downloads
- Transports
- Support for HTTP/1.1 protocol
- Support for HTTP/1.0 protocol
- Support for FTP protocol
- Support for FSP protocol
- Custom headers
- Fake user-agent header
- Custom referer header, configurable per URL
- Custom cookie header, configurable per URL
- Other features
- Can check in different directories if we already have downloaded file (configurable by wildcard)
- Can move downloaded file to special directory (configurable by wildcard)
<<lessDownload Machine is pure Java daemon that watches queue files for changes. If a new entry is available, DM will download it. Queue files are just URL lists. DM fully supports the HTTP, FSP, and FTP protocols.
Main features:
- Design goals
- Non graphical
- Non interactive
- Relieable downloads
- Queued downloads
- Portability (uses Java)
- Simple to use
- Resume interrupted downloads
- Transports
- Support for HTTP/1.1 protocol
- Support for HTTP/1.0 protocol
- Support for FTP protocol
- Support for FSP protocol
- Custom headers
- Fake user-agent header
- Custom referer header, configurable per URL
- Custom cookie header, configurable per URL
- Other features
- Can check in different directories if we already have downloaded file (configurable by wildcard)
- Can move downloaded file to special directory (configurable by wildcard)
Download (MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
974 downloads
Download Manager 0.0.5
Download Manager project is a GNOME download manager. more>>
Download Manager project is a GNOME download manager.
Download Manager (also known as downman) is a suite of programs that assist with downloading files. It features a GNOME 2 GUI.
Download Manager suite
downmand: a daemon that takes care of downloading files
downman: a command line client to downmand to add files for download
downman-gmonitor: a little window where you can drop urls
gdownman: (aka gnome download manager), a gui client to control downloads
Main features:
- Gnome 2 GUI
- Multiple projects
- Speed limit for each download
- Speed limit for each project
Enhancements:
- Moved to gnome-vfs as the backend for the transfers.
- s/download/transfer in the daemon.
- Servers support, you can now limit the amount of connections to a server.
- Ability to show/hide toolbar and statusbar in the GUI
- Correctly update download speedlimit in the GUI
- Show mime-type icons with the filename
- Remove use of List (use GList instead)
- Fixes & cleanups
<<lessDownload Manager (also known as downman) is a suite of programs that assist with downloading files. It features a GNOME 2 GUI.
Download Manager suite
downmand: a daemon that takes care of downloading files
downman: a command line client to downmand to add files for download
downman-gmonitor: a little window where you can drop urls
gdownman: (aka gnome download manager), a gui client to control downloads
Main features:
- Gnome 2 GUI
- Multiple projects
- Speed limit for each download
- Speed limit for each project
Enhancements:
- Moved to gnome-vfs as the backend for the transfers.
- s/download/transfer in the daemon.
- Servers support, you can now limit the amount of connections to a server.
- Ability to show/hide toolbar and statusbar in the GUI
- Correctly update download speedlimit in the GUI
- Show mime-type icons with the filename
- Remove use of List (use GList instead)
- Fixes & cleanups
Download (0.17MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
6237 downloads
Sudoku Sensei 2.00
Sudoku Sensei is a sudoku explainer C/C++ library with sample programs. more>>
Sudoku Sensei project is a sudoku "explainer" C/C++ library with sample programs.
It can list the logical steps taken. It can generate new Sudokus and rank their difficulty. It supports not only 9x9 grids, but MxN, samurai, or any layout you can describe.
The core is a C/C++ library.
It includes sample programs.
Enhancements:
- This release adds a Graphical User Interface with a manual and a tutorial.
<<lessIt can list the logical steps taken. It can generate new Sudokus and rank their difficulty. It supports not only 9x9 grids, but MxN, samurai, or any layout you can describe.
The core is a C/C++ library.
It includes sample programs.
Enhancements:
- This release adds a Graphical User Interface with a manual and a tutorial.
Download (0.14MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
804 downloads
SuDoKuToon 1.0
SuDoKuToon project is a fun Sudoku game with unique features for your desktop. more>>
SuDoKuToon project is a fun Sudoku game with unique features for your desktop.
Sudoku Toon is a free version of the popular game "Sudoku" thinking for you to be able to play it directly from your desktop while you are in the office or in your break time.
The game consist in fill the grid of 9x9 with number from 1 to 9 in such way that in each line, column or subgrid of 3x3, the numbers are not repeated
Besides of have to fill the grids with numbers of 1 to 9, you will be able to change and choose to play with colors or geometric figures. The game counts with 3 original music that you will be able to turn on or off whenever you wish.
Sudoku Toon has funny graphics and hundreds of "sudokus" to solve at your disposition, and if your head is tired, you will be able to continue later because the game will save the state of a sudoku automatically... and finally, if you want more sudokus... you will be able to download more packs of sudokus to get more challenges!!
<<lessSudoku Toon is a free version of the popular game "Sudoku" thinking for you to be able to play it directly from your desktop while you are in the office or in your break time.
The game consist in fill the grid of 9x9 with number from 1 to 9 in such way that in each line, column or subgrid of 3x3, the numbers are not repeated
Besides of have to fill the grids with numbers of 1 to 9, you will be able to change and choose to play with colors or geometric figures. The game counts with 3 original music that you will be able to turn on or off whenever you wish.
Sudoku Toon has funny graphics and hundreds of "sudokus" to solve at your disposition, and if your head is tired, you will be able to continue later because the game will save the state of a sudoku automatically... and finally, if you want more sudokus... you will be able to download more packs of sudokus to get more challenges!!
Download (6.2MB)
Added: 2007-04-20 License: Freeware Price:
965 downloads
Download (2.0MB)
Added: 2006-02-06 License: Freeware Price:
770 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above sudoku downloads for windows search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed