9.1.6 Checkerboard V1: Codehs

# Create the square at the correct position square = Rectangle(SQUARE_SIZE, SQUARE_SIZE) square.set_position(col * SQUARE_SIZE, row * SQUARE_SIZE)

This exercise is designed to test your ability to work with (lists of lists) and nested for loops . A common mistake is just printing the pattern; however, the CodeHS autograder specifically checks if you have assigned the value 1 to elements within your board. 1. Initialize Your Grid 9.1.6 checkerboard v1 codehs