GitXplorerGitXplorer
w

sudoku_solver

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
3e6c00d07822cd03bf113e75d00e02072820192c

Merge branch 'master' of https://github.com/wsuchy/sudoku_solver

committed 10 years ago
Unverified
cf327f55702227b92e86c98a6eb8e14142a190d2

Initial commit

wwsuchy committed 10 years ago
Unverified
3a6d95c3afc80f2b2b00e40e4baba0171b3bef56

Readme

committed 10 years ago
Unverified
0d7ff59d76536577a50f2a86ad44a108c28cfa25

cleanup

committed 10 years ago
Unverified
60cffce6bd833be97a87961f5f1a27642800e366

cleanup

committed 10 years ago
Unverified
002096c177a523683fa6225641ada6fa2c125218

working

committed 10 years ago

README

The README file for this repository.

Sudoku solver written in Haskell

This is my first program written in haskell. It was made only for learning.

Currently implemented algorithms:

  • Basic sudoku rules
  • Find places where only one digit can be put
  • Guessing

Todo

  • Implement other algorithms like eliminating false possibilities
  • Explode this file into modules
  • Make code more readable