LLD - Design — Tic-Tac-Toe Game
Given the following pseudo-code for move validation:
What will be the output if
if move.position < 0 or move.position > board.size:
return False
else:
return TrueWhat will be the output if
move.position = 10 and board.size = 8?