|
|
|
|
|
|
64
|
public void canSliceByOne() {
|
64
|
public void canSliceByOne() {
|
|
65
|
Series series = new Series("01234");
|
65
|
Series series = new Series("01234");
|
|
66
|
List<List<Integer>> expected = Arrays.asList(
|
66
|
List<List<Integer>> expected = Arrays.asList(
|
|
67
|
- Collections.singletonList(0),
|
|
|
|
|
|
67
|
+ Collections.singletonList(0),
|
|
68
|
Collections.singletonList(1),
|
68
|
Collections.singletonList(1),
|
|
69
|
Collections.singletonList(2),
|
69
|
Collections.singletonList(2),
|
|
70
|
Collections.singletonList(3),
|
70
|
Collections.singletonList(3),
|