MCPcopy Create free account
hub / github.com/austingebauer/go-leetcode / TicTacToe

Struct TicTacToe

design_tic_tac_toe_348/solution.go:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import "math"
4
5type TicTacToe struct {
6 rowCounts []int
7 colCounts []int
8 forwardDiagCount int
9 backwardDiagCount int
10}
11
12/** Initialize your data structure here. */
13func Constructor(n int) TicTacToe {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected