Update sudoku.go

This commit is contained in:
wwqgtxx 2025-11-29 15:04:44 +08:00 committed by GitHub
parent 2d8204c3e4
commit e918611640
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -172,8 +172,9 @@ func NewSudoku(option SudokuOption) (*Sudoku, error) {
seed = crypto.EncodePoint(recoveredFromKey)
}
start := time.Now()
table := sudoku.NewTable(seed, tableType)
log.Infoln("[Sudoku] Tables initialized (%s)", tableType)
log.Infoln("[Sudoku] Tables initialized (%s) in %v", tableType, time.Since(start))
defaultConf := apis.DefaultConfig()
paddingMin := defaultConf.PaddingMin