printers.go 220 B

12345678910111213
  1. package solver
  2. import (
  3. "fmt"
  4. "log"
  5. )
  6. func (solver *Solver) print_solutions() {
  7. for solutions := range solver.solutions {
  8. log.Printf("\nSolution #%d:", solutions+1)
  9. fmt.Println(solver.solutions[solutions])
  10. }
  11. }