-
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 skeleton of new class and modified existing staircase test case
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
src/main/java/edu/rpi/legup/puzzle/sudoku/rules/LastColumnAndRowDirectRule.java
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,2 @@ | ||
package edu.rpi.legup.puzzle.sudoku.rules;public class LastColumnAndRowDirectRule { | ||
} |
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> |