8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 796ecc2 commit 727dd51Copy full SHA for 727dd51
src/test/java/com/fishercoder/_189Test.java
@@ -8,14 +8,12 @@
8
public class _189Test {
9
private static _189.Solution1 solution1;
10
private static _189.Solution2 solution2;
11
- private static _189.Solution3 solution3;
12
private static int[] nums;
13
14
@BeforeClass
15
public static void setup() {
16
solution1 = new _189.Solution1();
17
solution2 = new _189.Solution2();
18
- solution3 = new _189.Solution3();
19
}
20
21
@Test
@@ -34,11 +32,4 @@ public void test2() {
34
32
CommonUtils.printArray(nums);
35
33
36
37
- @Test
38
- public void test3() {
39
- nums = new int[]{1, 2, 3};
40
-
41
- solution3.rotate(nums, 1);
42
- CommonUtils.printArray(nums);
43
- }
44
0 commit comments