| 3 | import "math" |
| 4 | |
| 5 | type TicTacToe struct { |
| 6 | rowCounts []int |
| 7 | colCounts []int |
| 8 | forwardDiagCount int |
| 9 | backwardDiagCount int |
| 10 | } |
| 11 | |
| 12 | /** Initialize your data structure here. */ |
| 13 | func Constructor(n int) TicTacToe { |
nothing calls this directly
no outgoing calls
no test coverage detected