Skip to content

Instantly share code, notes, and snippets.

@dungpa
Created February 10, 2012 15:59
Show Gist options
  • Save dungpa/1790471 to your computer and use it in GitHub Desktop.
Save dungpa/1790471 to your computer and use it in GitHub Desktop.
Declaration of the chessboard
type Board(initialSize: int) =
let size = initialSize
let mutable col = 0
let rows = Array.create size false
let fwDiagonals = Array.create (2*size-1) false
let bwDiagonals = Array.create (2*size-1) false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment