Change internal Solution storage to [][]string (Closes #24)

This commit is contained in:
2025-01-28 01:43:47 +01:00
parent 515034a64e
commit 647476f6d8
3 changed files with 9 additions and 15 deletions

View File

@ -23,7 +23,7 @@ type Controller struct {
// 9th row of the Sudoku puzzle.
Row9 string
// Slice with all found solutions.
Solutions []string
Solutions [][]string
// Number of CPUs Go routines are allowed to use.
NumCPUs int
// Number of parts the search should be split into.