Package-level declarations

Types

Link copied to clipboard
class SudokuParser(puzzle: String, dimension: Dimension)

A class responsible for parsing and manipulating Sudoku puzzle strings.

Functions

Link copied to clipboard
fun generateTokenMap(boxDigits: Int): TokenMap

Generates a mapping between token values and their corresponding string representations.

Link copied to clipboard

Converts the provided Sudoku puzzle string into a 2D integer array representation. This method utilizes a SudokuParser object internally to handle the parsing and conversion process.