loadPresetSchemas

Loads a set of predefined Sudoku schemas that are included in the Sudoklify library.

This function returns a SudokuSchemas object populated with a collection of seeds for various Sudoku grid sizes, including:

  • 4x4 grids (four digits)

  • 9x9 grids (nine digits)

  • 16x16 grids (sixteen digits)

  • 25x25 grids (twenty-five digits)

Each seed is a predefined configuration that can be used to generate Sudoku puzzles of varying sizes and complexities.

Example usage:

val schemas = loadPresetSchemas()
// Use the schemas to generate or solve Sudoku puzzles.

Return

A SudokuSchemas object containing all predefined seeds.