-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLevelData.java
33 lines (31 loc) · 1.34 KB
/
LevelData.java
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
package uk.ac.soton.comp1206;
public class LevelData {
public static final String[] LEVEL2= new String[] {
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000",
"00000000000000000000000000000000"
};
public static final String[] LEVEL1 = new String[] {
"11111111111111111111111111111111",
"10000000000000000000000000000001",
"10000000000000000000000000000001",
"10000000000000000000000000000001",
"10000000000000011100000000000001",
"10000000011111000000000000000001",
"10000000000000000000000000111001",
"10001111000000000000000000000001",
"10000000000000000000000000000001",
"10000000000000000001111000000001",
"10001111000000000001111000000001",
"10000000000000000001111110000001",
"10000000111111110001111111100001",
"10000000000000000111111111110001",
"11111111100011111111111111111101",
"11111111111111111111111111111111"
};
}