Loading board/board.go +13 −0 Original line number Diff line number Diff line package board // Board holds the board information. type Board struct { Width, Height int } // New returns a new Sudoku Board. func New(widht, height int) *Board { return &Board{ Width: widht, Height: height, } } Loading
board/board.go +13 −0 Original line number Diff line number Diff line package board // Board holds the board information. type Board struct { Width, Height int } // New returns a new Sudoku Board. func New(widht, height int) *Board { return &Board{ Width: widht, Height: height, } }