asandroq (owner)

Revisions

gist: 226135 Download_button fork
public
Public Clone URL: git://gist.github.com/226135.git
Embed All Files: show embed
legal? #
1
2
3
4
5
6
(define (legal? move player board)
  (and (eqv? (board-ref board move) *empty*)
       (any? (lambda (dir)
               (would-flip move player board dir))
             *all-directions*)))