30 lines
473 B
Go
Raw Normal View History

package solver
import "sync/atomic"
type Solver struct {
blocks []int
row1 string
row2 string
row3 string
row4 string
row5 string
row6 string
row7 string
row8 string
row9 string
row1s []int
row2s []int
row3s []int
row4s []int
row5s []int
row6s []int
row7s []int
row8s []int
row9s []int
2024-12-08 14:19:55 +01:00
iter int64
counter atomic.Int64
solutions []string
2025-01-25 14:34:51 +01:00
rates []int64
}