types.go 421 B

1234567891011121314151617181920212223242526
  1. package solver
  2. type Solver struct {
  3. blocks []int
  4. row1 string
  5. row2 string
  6. row3 string
  7. row4 string
  8. row5 string
  9. row6 string
  10. row7 string
  11. row8 string
  12. row9 string
  13. row1s []int
  14. row2s []int
  15. row3s []int
  16. row4s []int
  17. row5s []int
  18. row6s []int
  19. row7s []int
  20. row8s []int
  21. row9s []int
  22. iter int
  23. counter int
  24. solutions []string
  25. }