From 521b4536f7dd1c1fa9170e6e9d055f6edfbc4006 Mon Sep 17 00:00:00 2001 From: Jeroen Coussement Date: Tue, 24 Nov 2015 09:56:24 +0100 Subject: [PATCH] Add readme with instructions Forgot to add this file in my entry. Sent the instructions in the mail, copied them into this readme.md. Thanks for adding it. --- nov15/normal/jeroen-coussement/sugoku/readme.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nov15/normal/jeroen-coussement/sugoku/readme.md diff --git a/nov15/normal/jeroen-coussement/sugoku/readme.md b/nov15/normal/jeroen-coussement/sugoku/readme.md new file mode 100644 index 0000000..1c0d17a --- /dev/null +++ b/nov15/normal/jeroen-coussement/sugoku/readme.md @@ -0,0 +1,15 @@ +# sugoku + +Soduke solver using constaint propagation. Solution for the go challenge at http://golang-challenge.com/go-challenge8/ + +#### Usage: + +The program will read the problem from stdin and solve it, if the format is correct, and if the sudoku has a solution + +To solve the challenge in challenges/hard2.txt: + + go run sugoku.go < challenges/hard2.txt + +If you want the program to rate the sudoku, just provide the rate flag + + go run sugoku.go --rate < challenges/hard2.txt