Search found 9 matches: sudoku

Searched query: sudoku

by xytroxon
Tue Apr 09, 2013 7:36 pm
Forum: So, what can you actually DO with newLISP?
Topic: For Fun: Benchmarking Sudoku Algorithms
Replies: 0
Views: 5165

For Fun: Benchmarking Sudoku Algorithms

... "For Fun" challenge, inspired by this old (2011) 'Attractive Chaos' blog that bubbled back up on one of my rss feeds: 'An Incomplete Review of Sudoku Solver Implementations' http://attractivechaos.wordpress.com/2011/06/19/an-incomplete-review-of-sudoku-solver-implementations/ Sudoku is probably ...
by Kirill
Sun Nov 08, 2009 8:23 pm
Forum: newLISP newS
Topic: Jiminator, Newlisp (ARC4 Encryption, blogpost)
Replies: 1
Views: 2841

Re: Jiminator, Newlisp (ARC4 Encryption, blogpost)

I liked this one a lot:
Lisp beats sudoku while on the train anyway :)
Kirill
by newdep
Sat Jul 29, 2006 4:11 pm
Forum: newLISP and the O.S.
Topic: newlisp/2 a newlisp for OS/2
Replies: 15
Views: 9013

some working proof on OS/2 -> [C:\utils\prog\nl\newlisp-8.9.1]newlisp ../sudoku.lsp Generating sudoku solution: !1!2!3!4!5!6!7!8!9 (59883) Generating game from sudoku solution. 2 | 7 1 | 5 9 | 3 | 8 4 3 8 | 4 9 | ----- + ----- + ----- 7 | 2 1 | 4 9 4 3 | | 1 ...
by newdep
Sat Jul 29, 2006 4:07 pm
Forum: newLISP newS
Topic: development version newLISP 8.9.1
Replies: 3
Views: 4165

Hi Lutz,

What did you change in rand?? because my sudoku.lsp random genartor does NOT
hang anymore??? this is oddddddddd ;-)

Norman.
by cormullion
Wed Jul 12, 2006 9:42 am
Forum: Anything else we might add?
Topic: Ruby-style iterators
Replies: 9
Views: 5134

OT

Sudoku in three lines of Perl:

http://www.ecclestoad.co.uk/blog/2005/0 ... ained.html

not very readable, though :-)
by William James
Wed Jul 05, 2006 3:58 pm
Forum: Anything else we might add?
Topic: Ruby-style iterators
Replies: 9
Views: 5134

... (fn (row col) (println row ":" col xxx))) The output is 0:0 Correct. 0:1 Correct. 1:0 Correct. 1:1 Correct. I encountered this problem in the sudoku program, and that's why I used a context. Another example: (define (for-each func , row col) (dotimes (row 2) (dotimes (col 2) (func row col)))) ...
by William James
Tue Jul 04, 2006 10:50 pm
Forum: Anything else we might add?
Topic: Ruby-style iterators
Replies: 9
Views: 5134

Ruby-style iterators

My newLISP Sudoku program needed an iterator like this: each_empty_cell { |row,col| . . . . } I put the definition in a context to hide the iterator's variables from the lambda it serves. (context 'each-empty-cell) (define (each-empty-cell:each-empty-cell ...
by newdep
Wed Dec 28, 2005 8:31 am
Forum: newLISP newS
Topic: newLisp competition - FINAL CALL -
Replies: 17
Views: 13889

And I think Ill also post my sudoku.lsp game generator.
Had a lot of fun from that game. Can be found here ->

http://nodep.nl/downloads/newlisp/sudoku.lsp

Regards, Norman.
by newdep
Sun Nov 06, 2005 7:03 pm
Forum: So, what can you actually DO with newLISP?
Topic: 5 Cents for today [ Random SuDoKu ]
Replies: 3
Views: 4257

5 Cents for today [ Random SuDoKu ]

A random sudoku generator.. Its random so take your time ;-)

here it is -> http://nodep.nl/newlisp

regards, Norman.