-
Notifications
You must be signed in to change notification settings - Fork 725
/
Copy pathLine.java
39 lines (31 loc) · 963 Bytes
/
Line.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
package nextstep.ladder.domain;
import nextstep.ladder.domain.strategy.GenerateLadderPoint;
import java.util.ArrayList;
import java.util.List;
public class Line {
private List<Boolean> points;
public Line(int namesSize, GenerateLadderPoint generateLadderPoint) {
this.points = generateLadderPoint.generate(namesSize);
if (this.points == null) {
this.points = new ArrayList<>();
}
}
public int move(int position) {
if (isMoveRight(position)) {
return position + 1;
}
if (isMoveLeft(position)) {
return position - 1;
}
return position;
}
public List<Boolean> getPoints() {
return points;
}
private boolean isMoveRight(int position) {
return position < points.size() && points.get(position);
}
private boolean isMoveLeft(int position) {
return position > 0 && points.get(position - 1);
}
}