Difference between revisions of "Haskell Quiz/Chess960"

From HaskellWiki
Jump to navigation Jump to search
 
(+cat)
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
   
 
==Solutions==
 
==Solutions==
  +
* [[Haskell Quiz/Chess960/Solution Sjanssen|Spencer Janssen]]
  +
  +
[[Category:Haskell Quiz|Chess960]]

Latest revision as of 10:35, 13 January 2007

The problem

Chess960 is a chess variant where the initial positions of the pieces are randomly chosen, with a few constraints:

  • The king is between the rooks
  • The bishops are on opposite colored squares

In short, the goal is to randomly generate valid Chess960 boards.

http://www.rubyquiz.com/quiz106.html

Solutions