Skip to content

Instantly share code, notes, and snippets.

@yayitswei
Created June 26, 2013 17:57
Show Gist options
  • Select an option

  • Save yayitswei/5869724 to your computer and use it in GitHub Desktop.

Select an option

Save yayitswei/5869724 to your computer and use it in GitHub Desktop.
winning states
(def winning-states
[
[1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1]
[0 0 0 1
0 0 1 0
0 1 0 0
1 0 0 0]
[1 0 0 0
1 0 0 0
1 0 0 0
1 0 0 0]
[0 1 0 0
0 1 0 0
0 1 0 0
0 1 0 0]
[0 0 1 0
0 0 1 0
0 0 1 0
0 0 1 0]
[0 0 0 1
0 0 0 1
0 0 0 1
0 0 0 1]
[1 1 1 1
0 0 0 0
0 0 0 0
0 0 0 0]
[0 0 0 0
1 1 1 1
0 0 0 0
0 0 0 0]
[0 0 0 0
0 0 0 0
1 1 1 1
0 0 0 0]
[0 0 0 0
0 0 0 0
0 0 0 0
1 1 1 1]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment