348. Design Tic-Tac-Toe
Description
Assume the following rules are for the tic-tac-toe game on an n x n
board between two players:
- A move is guaranteed to be valid and is placed on an empty block.
- Once a winning condition is reached, no more moves are allowed.
- A player who succeeds in placing
n
of their marks in a horizontal, vertical, or diagonal row wins the game.
Implement the TicTacToe
class:
TicTacToe(int n)
Initializes the object the size of the boardn
.int move(int row, int col, int player)
Indicates that the player with idplayer
plays at the cell(row, col)
of the board. The move is guaranteed to be a valid move, and the two players alternate in making moves. Return0
if there is no winner after the move,1
if player 1 is the winner after the move, or2
if player 2 is the winner after the move.
Example 1:
1 | Input |
Constraints:
2 <= n <= 100
- player is
1
or2
. 0 <= row, col < n
(row, col)
are unique for each different call tomove
.- At most
n^2
calls will be made tomove
.
Follow-up: Could you do better than O(n^2)
per move()
operation?
Hints/Notes
- 2025/01/20
- set
- premium
Solution
Language: C++
1 | class TicTacToe { |