Skip to content

Commit c933882

Browse files
committed
Challenge RobertBaruch#1 (WIP, maybe HTML works on github?)
1 parent 86fa870 commit c933882

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

challenge01.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Challenge #1: The "hardest Sudoku puzzle in the world"
2+
3+
[Sudoku](https://en.wikipedia.org/wiki/Sudoku) is a puzzle, typically on a 9x9 grid made up of nine 3x3 subgrids, where every row and column must contain every number between 1 and 9, exactly once, and every 3x3 subgrid also contains every number exactly once. Some squares in the puzzle are already filled out, which act as constraints. The rest are blank, and need to be filled in through logical reasoning. The solution is unique.
4+
5+
Write a module and use formal verification to solve the ["hardest Sudoku puzzle in the world"](https://gizmodo.com/can-you-solve-the-10-hardest-logic-puzzles-ever-created-1064112665).
6+
7+
<style>
8+
table { border-collapse: collapse; font-family: Calibri, sans-serif; }
9+
colgroup, tbody { border: solid medium; }
10+
td { border: solid thin; height: 1.4em; width: 1.4em; text-align: center; padding: 0; }
11+
</style>
12+
<table>
13+
<caption>The hardest Sudoku puzzle in the world</caption>
14+
<colgroup><col><col><col>
15+
<colgroup><col><col><col>
16+
<colgroup><col><col><col>
17+
<tbody>
18+
<tr> <td>8 <td> <td> <td> <td> <td> <td> <td> <td>
19+
<tr> <td> <td> <td>3 <td>6 <td> <td> <td> <td> <td>
20+
<tr> <td> <td>7 <td> <td> <td>9 <td> <td>2 <td> <td>
21+
<tbody>
22+
<tr> <td> <td>5 <td> <td> <td> <td>7 <td> <td> <td>
23+
<tr> <td> <td> <td> <td> <td>4 <td>5 <td>7 <td> <td>
24+
<tr> <td> <td> <td> <td>1 <td> <td> <td> <td>3 <td>
25+
<tbody>
26+
<tr> <td> <td> <td>1 <td> <td> <td> <td> <td>6 <td>8
27+
<tr> <td> <td> <td>8 <td>5 <td> <td> <td> <td>1 <td>
28+
<tr> <td> <td>9 <td> <td> <td> <td> <td>4 <td> <td>
29+
</table>

0 commit comments

Comments
 (0)