-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #846 from tdou25/sudoku
Sudoku
- Loading branch information
Showing
3 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/test/resources/puzzles/sudoku/rules/LastCellForNumberDirectRule/OnePossible
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<Legup> | ||
<puzzle name="Sudoku"> | ||
<board size="9"> | ||
<cells> | ||
<cell value="1" x="0" y="0"/> | ||
<cell value="2" x="1" y="0"/> | ||
<cell value="3" x="2" y="0"/> | ||
<cell value="4" x="0" y="1"/> | ||
<cell value="6" x="2" y="1"/> | ||
<cell value="7" x="0" y="2"/> | ||
<cell value="8" x="1" y="2"/> | ||
<cell value="9" x="2" y="2"/> | ||
|
||
<cell value="1" x="1" y="3"/> | ||
<cell value="3" x="1" y="4"/> | ||
<cell value="4" x="1" y="5"/> | ||
<cell value="6" x="1" y="6"/> | ||
<cell value="7" x="1" y="7"/> | ||
<cell value="9" x="1" y="8"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
<solved isSolved="false" lastSaved="--"/> | ||
</Legup> |
18 changes: 18 additions & 0 deletions
18
src/test/resources/puzzles/sudoku/rules/LastCellForNumberDirectRule/StaircaseCase
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<Legup> | ||
<puzzle name="Sudoku"> | ||
<board size="9"> | ||
<cells> | ||
<cell value="7" x="0" y="0"/> | ||
<cell value="7" x="1" y="3"/> | ||
<cell value="7" x="2" y="6"/> | ||
<cell value="7" x="3" y="1"/> | ||
<cell value="7" x="5" y="7"/> | ||
<cell value="7" x="6" y="2"/> | ||
<cell value="7" x="7" y="5"/> | ||
<cell value="7" x="8" y="8"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
<solved isSolved="false" lastSaved="--"/> | ||
</Legup> |