-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm348 v2 O(1).py
35 lines (25 loc) · 958 Bytes
/
m348 v2 O(1).py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class TicTacToe:
def __init__(self, n: int):
self.boardCols = [0] * n
self.boardRows = [0] * n
self.diagonals = [0] * 2
self.n = n
def move(self, row: int, col: int, player: int) -> int:
direction = 1 if (player == 2) else -1
self.boardCols[row] += direction
self.boardRows[col] += direction
if abs(self.boardCols[row]) == self.n \
or abs(self.boardRows[col]) == self.n :
return player
if row == col :
self.diagonals[0] += direction
if abs(self.diagonals[0]) == self.n :
return player
if row == self.n - col - 1 :
self.diagonals[1] += direction
if abs(self.diagonals[1]) == self.n :
return player
return 0
# Your TicTacToe object will be instantiated and called as such:
# obj = TicTacToe(n)
# param_1 = obj.move(row,col,player)