-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrices.py
36 lines (35 loc) · 1.17 KB
/
matrices.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
matrices = [
[
["5","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
],
[
[".",".",".",".",".","7",".",".","9"],
[".","4",".",".","8","1","2",".","."],
[".",".",".","9",".",".",".","1","."],
[".",".","5","3",".",".",".","7","2"],
["2","9","3",".",".",".",".","5","."],
[".",".",".",".",".","5","3",".","."],
["8",".",".",".","2","3",".",".","."],
["7",".",".",".","5",".",".","4","."],
["5","3","1",".","7",".",".",".","."]
],
[
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".",".","."]
]
]