#define ONE 2

Sudoku Solver

This is a program written scheme to solve sudoku puzzles. It uses a 9x9 matrix to store puzzle, and implements and exhaustive brute-force search to solve the puzzle, guaranteeing (eventually...) a solved puzzle. It works surprising fast even on difficult puzzles.

Project goals:

What it does:

What it doesn't do

Here's the source code:

schedoku.ss

Other places where I exist