Commit 733bb951 authored by Boris Mühmer's avatar Boris Mühmer
Browse files

added basic board

parent e118be5a
Loading
Loading
Loading
Loading
+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,
	}
}