Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created March 7, 2017 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/cd0171414e7621d7df8ec3ba50d6b313 to your computer and use it in GitHub Desktop.
Save deque-blog/cd0171414e7621d7df8ec3ba50d6b313 to your computer and use it in GitHub Desktop.
(def empty-board
"An empty board of `width` columns times `height` owners"
(let [empty-column (vec (repeat height :none))]
(vec (repeat width empty-column))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment