Issue description:
A clear and concise description of what the issue is.
Hint 3 of the "Using A For Loop To Move To The End of The Board" is misleading. It says:
Use for number in range(board_size.y - 1): to loop enough times.
The correct code, however, is: for number in range(board_size.y):` as the range creates a rage of 0..(n - 1) as explained in the lesson before the exercise.
Issue description:
A clear and concise description of what the issue is.
Hint 3 of the "Using A For Loop To Move To The End of The Board" is misleading. It says:
Use
for number in range(board_size.y - 1):to loop enough times.The correct code, however, is: for number in range(board_size.y):` as the range creates a rage of 0..(n - 1) as explained in the lesson before the exercise.