exercism-go/minesweeper/minesweeper.go
2025-03-09 13:26:08 -04:00

7 lines
132 B
Go

package minesweeper
// Define the Board type here.
func (b Board) Count() error {
panic("Please implement the Count function")
}