Skip to content

Instantly share code, notes, and snippets.

@pitchforks
Created April 17, 2014 04:55
Show Gist options
  • Save pitchforks/10953810 to your computer and use it in GitHub Desktop.
Save pitchforks/10953810 to your computer and use it in GitHub Desktop.
chess board as list of lists
[['r', 'n', 'b', 'q', 'k', 'b', 'n', 'r'],
['p', 'p', 'p', 'p', 'p', 'p', 'p', 'p'],
['.', '.', '.', '.', '.', '.', '.', '.'],
['.', '.', '.', '.', '.', '.', '.', '.'],
['.', '.', '.', '.', '.', '.', '.', '.'],
['.', '.', '.', '.', '.', '.', '.', '.'],
['P', 'P', 'P', 'P', 'P', 'P', 'P', 'P'],
['R', 'N', 'B', 'Q', 'K', 'B', 'N', 'R']]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment