fiveham / Sudoku_Solver

Solve sudoku puzzles by representing the puzzle as a bipartite graph of truth-claims about cells' values and rule-statements that have exactly one true neighbor and removing edges as information is added
MIT License
0 stars 0 forks source link

Support for different charsets #3

Closed fiveham closed 8 years ago

fiveham commented 8 years ago

Right now, Parsers only use Scanner's default character encoding. Solver, Parsers, and all other involved classes should have a way for the user or calling context to specify the charset to use for the Scanner(s) reading a specified file.

fiveham commented 8 years ago

Command-line specification of charset has been added.