LLD - Design — Tic-Tac-Toe Game
Identify the bug in this move validation function:
def validate_move(move, max_position):
if move.position <= 0 or move.position >= max_position:
return False
return True