-
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.
added two new sudoku tests: one for cornered region, one for one logi…
…cal jump
- Loading branch information
Showing
2 changed files
with
70 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
20 changes: 20 additions & 0 deletions
20
src/test/resources/puzzles/sudoku/rules/LastCellForNumberDirectRule/LogicJumpSimple
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,20 @@ | ||
<?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="8" x="1" y="0"/> | ||
<cell value="1" x="4" y="0"/> | ||
<cell value="2" x="5" y="0"/> | ||
<cell value="3" x="3" y="1"/> | ||
<cell value="4" x="5" y="1"/> | ||
<cell value="5" x="3" y="2"/> | ||
<cell value="6" x="4" y="2"/> | ||
<cell value="8" x="7" y="2"/> | ||
<cell value="9" x="8" y="2"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
<solved isSolved="false" lastSaved="--"/> | ||
</Legup> |