-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLevel 1 Matrix
21 lines (21 loc) · 1.07 KB
/
Level 1 Matrix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
level1 = [
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,3,0,0,3,0,0,2,1,1,2,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,3,0,0,3],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,0,0,1,1],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,0,1,1,1],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,0,1,1,1],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,0,1,1,1],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,2,1,1,1],
[0,0,0,0,0,0,2,1,1,2,0,0,2,1,1,2,0,0,0,0,0,2,1,1,1],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
]