Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7f4897d

Browse files
committedNov 22, 2024·
[LEET-3354] fix build
1 parent fa75bc2 commit 7f4897d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.fishercoder.fourththousand;
22

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
35
import com.fishercoder.solutions.fourththousand._3354;
46
import org.junit.jupiter.api.BeforeEach;
57
import org.junit.jupiter.api.Test;
68

7-
import static org.junit.jupiter.api.Assertions.assertEquals;
8-
99
public class _3354Test {
1010
private _3354.Solution1 solution1;
1111

@@ -16,11 +16,12 @@ public void setup() {
1616

1717
@Test
1818
public void test1() {
19-
assertEquals(2, solution1.countValidSelections(new int[]{1, 0, 2, 0, 3}));
19+
assertEquals(2, solution1.countValidSelections(new int[] {1, 0, 2, 0, 3}));
2020
}
2121

2222
@Test
2323
public void test2() {
24-
assertEquals(3, solution1.countValidSelections(new int[]{16, 13, 10, 0, 0, 0, 10, 6, 7, 8, 7}));
24+
assertEquals(
25+
3, solution1.countValidSelections(new int[] {16, 13, 10, 0, 0, 0, 10, 6, 7, 8, 7}));
2526
}
2627
}

0 commit comments

Comments
 (0)
Please sign in to comment.