-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku_examples.py
67 lines (62 loc) · 1.39 KB
/
sudoku_examples.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# hidden pair
rows = [
"000710030",
"000000000",
"845000000",
"000000000",
"000000000",
"003000000",
"001000000",
"000000000",
"000000000",
]
# test fill by box
rows = [
"100000000",
"205000000",
"306000000",
"000000000",
"000000000",
"000000000",
"070000000",
"000000000",
"000000000",
]
# medio, ya lo resuelve :)
rows = [
"501000600",
"049057001",
"820600040",
"008705000",
"090000057",
"000006004",
"304000028",
"085009000",
"062000005",
]
# dificil
rows = [
"007001200",
"009400807",
"008005000",
"000000000",
"100004700",
"002090600",
"200500060",
"000000085",
"300006400",
]
# por row
rows = [
"120456300",
"700000000",
"000000000",
"000000000",
"000000000",
"000000000",
"000000000",
"000000000",
"000000007",
]
# plain pair en box 5 --> otra pair --> resuelve el 2 en la columna 6 (5) --> resuelve todo
rows = ['076380015', '083000260', '054609837', '718035006', '645000103', '329461758', '867103500', '032000671', '091076380']