Skip to content

Commit

Permalink
Remove unused sample puzzle in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wdye committed Aug 30, 2018
1 parent 19acf42 commit 04a4245
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions sudoku/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,3 @@
get_solver,
solve,
)


input_string = """
+-------+-------+-------+
| 4 . . | . . . | 8 . 5 |
| . 3 . | . . . | . . . |
| . . . | 7 . . | . . . |
+-------+-------+-------+
| . 2 . | . . . | . 6 . |
| . . . | . 8 . | 4 . . |
| . . . | . 1 . | . . . |
+-------+-------+-------+
| . . . | 6 . 3 | . 7 . |
| 5 . . | 2 . . | . . . |
| 1 . 4 | . . . | . . . |
+-------+-------+-------+
"""

ds = DictSudoku.from_string(input_string)
ms = MatrixSudoku.from_string(input_string)

0 comments on commit 04a4245

Please sign in to comment.