JEncodedCell
A value class representing a J-Encoded string for Sudoku cells. The J-Encoded string uses letters 'a' to 'j', where 'j' represents 0.
Example:
val encodedCell = JEncodedCell("E") // Represents 5
val intValue = encodedCell.toInt() // Converts back to integer value
Content copied to clipboard