import math
def board_gen(width, height):
height = int(height)
width = int(width)
xo =
strt_ltr = 1
board = []
for row in range(1, (height+1)):
strt_ltr = int(math.sqrt((strt_ltr-1)**2))
line = xo[strt_ltr:(width+strt_ltr)]
board.append(line)
return board
config =
if (height%2==True):
print config[0:width]
else:
print config[1:width]
I do not know where to go from here :( someone pleaseeeeeeeeeeeee HELP ME