Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: JigsawSudoku(string[], int, int)

Declaration

public JigsawSudoku(
    string[] stringifiedRegions,
    int sideLength = 9,
    int minValue = 1
)

Summary

Constructs a Jigsaw Sudoku from a string representation of the regions.

Parameters

string[]stringifiedRegions An array of strings such as "A-C1,A-B2,A3" that describe the regions as coordinates in the same format as Constraint.TranslateCoordinates(string, int).
intsideLength Width and height of the Sudoku grid.
intminValue Minimum value in the grid.