generated from asa-holland/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuzzles.json
50 lines (41 loc) · 1.04 KB
/
puzzles.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[
{
"puzzle_name": "Very, Very Easy Sudoku",
"source": "Asa Holland",
"puzzle": [ [1,2,3, 5,4,7, 6,8,9],
[4,5,6, 2,9,8, 1,3,7],
[7,8,9, 3,6,1, 2,4,5],
[5,4,7, 1,2,3, 8,9,6],
[2,9,8, 0,5,6, 3,7,1],
[3,6,1, 7,8,9, 4,5,2],
[6,1,4, 8,7,5, 9,2,3],
[8,3,5, 9,1,2, 7,6,4],
[9,7,2, 6,3,4, 5,1,8] ]
},
{
"puzzle_name": "Easy Sudoku",
"source": "https://dingo.sbs.arizona.edu/~sandiway/sudoku/examples.html",
"puzzle": [ [0,0,0, 2,6,0, 7,0,1],
[6,8,0, 0,7,0, 0,9,0],
[1,9,0, 0,0,4, 5,0,0],
[8,2,0, 1,0,0, 0,4,0],
[0,0,4, 6,0,2, 9,0,0],
[0,5,0, 0,0,3, 0,2,8],
[0,0,9, 3,0,0, 0,7,4],
[0,4,0, 0,5,0, 0,3,6],
[7,0,3, 0,1,8, 0,0,0] ]
},
{
"puzzle_name": "Very Hard Sudoku",
"source": "https://www.sudokudragon.com/unsolvable.htm",
"puzzle": [ [0,0,0, 2,6,0, 7,0,1],
[6,8,0, 0,7,0, 0,9,0],
[1,9,0, 0,0,4, 5,0,0],
[8,2,0, 1,0,0, 0,4,0],
[0,0,4, 6,0,2, 9,0,0],
[0,5,0, 0,0,3, 0,2,8],
[0,0,9, 3,0,0, 0,7,4],
[0,4,0, 0,5,0, 0,3,6],
[7,0,3, 0,1,8, 0,0,0] ]
}
]