9.1.6 Checkerboard V1 Codehs -

: While some solutions suggest nested loops to alternate 1s and 0s (like a real chessboard), "v1" usually only requires filling entire rows with 1s or 0s. Check your specific assignment instructions to see if alternating columns are required. Autograder Errors

private Rectangle[][] board; private int size; public Checkerboard(int size) 9.1.6 checkerboard v1 codehs