Skip to content

Commit a710bb2

Browse files
authored
Improved task 2708
1 parent 66334e6 commit a710bb2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/g2701_2800/s2708_maximum_strength_of_a_group/SolutionTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ void maxStrength2() {
1818

1919
@Test
2020
void maxStrength3() {
21-
assertThat(new Solution().maxStrength(
22-
new int[] {8, 6, 0, 5, -4, -8, -4, 9, -1, 6, -4, 8, -5}), equalTo(265420800L));
21+
assertThat(
22+
new Solution().maxStrength(new int[] {8, 6, 0, 5, -4, -8, -4, 9, -1, 6, -4, 8, -5}),
23+
equalTo(265420800L));
2324
}
2425
}

0 commit comments

Comments
 (0)