sudoku-funpark/solver/printers.go

14 lines
221 B
Go
Raw Permalink Normal View History

2025-01-23 20:26:43 +01:00
package solver
import (
"fmt"
"log"
)
func (solver *Solver) print_solutions() {
2025-01-23 23:11:30 +01:00
for solution_index, solution := range solver.solutions {
log.Printf("\nSolution #%d:", solution_index+1)
fmt.Println(solution)
2025-01-23 20:26:43 +01:00
}
}