interface Printer
|
|
Print a Sudoku to the console abstract fun print(: Sudoco): String |
solution |
Print the solution of solving a Sudoku abstract fun solution(: Status, : String, : Sudoco): Unit |
AsciiPrinter |
Prints a Sudocu board with some asci formatting class AsciiPrinter : Printer |
NoOpsPrinter |
Prints empty string, usefull for measuring performance, to exclude printing class NoOpsPrinter : Printer |