9.1.6 Checkerboard V1 Codehs |top| Instant
You need to create a grid where cells alternate colors (usually black and white) to resemble a checkerboard. In CodeHS, this typically involves using the Grid class and the Color constants. The Logic: The "Odd/Even" Rule
return win
grid, a checkerboard pattern alternates colors. If you look at the coordinates of any square: Square (0,0) is Color A. Square (0,1) is Color B. Square (1,0) is Color B. Square (1,1) is Color A. 9.1.6 checkerboard v1 codehs
Ensure you are actually changing board[i][j] = 1 rather than just printing, or you won't pass the autograder. You need to create a grid where cells