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