public boolean gameOver()
/*
Pre-condition: none
Post-condition: true is returned if the game is
over because the grid is empty
Informally: return whether or not the game is over
*/
{
int r,c;
Location l;
trace("gameOver: gameOver starts");
COMPLETE ME!!!
trace("gameOver: gameOver ends");
return true;
}