-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmptyCell.java
51 lines (45 loc) · 1.06 KB
/
EmptyCell.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import java.lang.UnsupportedOperationException;
import java.util.List;
import java.util.LinkedList;
public class EmptyCell extends Cell{
private static final int NUMBER_POSSIBLE_VALUES = 9;
private final boolean[] possibleValues;
public EmptyCell(int x,int y) {
super(x,y);
possibleValues = new boolean[NUMBER_POSSIBLE_VALUES];
for (int i=0;i<possibleValues.length;i++) {
possibleValues[i] = true;
}
}
public boolean isValue() {
return false;
}
public int getValue() {
throw new UnsupportedOperationException();
}
public List<Integer> possibleValues() {
LinkedList<Integer> result = new LinkedList<>();
for (int i=0;i<possibleValues.length;i++) {
if (possibleValues[i]) {
result.add(i);
}
}
return result;
}
public boolean setNotPossibleValue(int value) {
if (possibleValues[value]) {
possibleValues[value] = false;
return true;
} else {
return false;
}
}
public boolean setPossibleValue(int value) {
if (!possibleValues[value]) {
possibleValues[value] = true;
return true;
} else {
return false;
}
}
}