14 lines
220 B
Go
14 lines
220 B
Go
|
package solver
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func (solver *Solver) print_solutions() {
|
||
|
for solutions := range solver.solutions {
|
||
|
log.Printf("\nSolution #%d:", solutions+1)
|
||
|
fmt.Println(solver.solutions[solutions])
|
||
|
}
|
||
|
}
|