What data structures would you use to represent a chessboard for a computer chess program?
int[8][8] 0=no piece 1=king 2=queen 3=rook 4=knight 5=bishop 6=pawn
use positive ints for white and negative ints for black