sudoku-funpark/solver/printers.go

14 lines
221 B
Go

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