sudoku-funpark/solver/printers.go

14 lines
218 B
Go

package solver
import (
"fmt"
"log"
)
func (solver *Solver) printSolutions() {
for solutionIndex, solution := range solver.solutions {
log.Printf("\nSolution #%d:", solutionIndex+1)
fmt.Println(solution)
}
}