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 916f28f commit 0a2c0ddCopy full SHA for 0a2c0dd
src/test/java/com/fishercoder/_46Test.java
@@ -0,0 +1,20 @@
1
+package com.fishercoder;
2
+
3
+import com.fishercoder.common.utils.CommonUtils;
4
+import com.fishercoder.solutions._46;
5
+import org.junit.BeforeClass;
6
+import org.junit.Test;
7
8
+public class _46Test {
9
+ private static _46.Solution1 solution1;
10
11
+ @BeforeClass
12
+ public static void setup() {
13
+ solution1 = new _46.Solution1();
14
+ }
15
16
+ @Test
17
+ public void test1() {
18
+ CommonUtils.printListList(solution1.permute(new int[]{1, 2, 3}));
19
20
+}
0 commit comments