mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
Add permutations and combinations (#2932)
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.thealgorithms.backtracking;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
public class PermutationTest {
|
||||
@Test
|
||||
void testNoElement()
|
||||
{
|
||||
List<Integer []> result = Permutation.permutation(new Integer[]{});
|
||||
assertEquals(result.get(0).length, 0);
|
||||
}
|
||||
@Test
|
||||
void testSingleElement()
|
||||
{
|
||||
List<Integer []> result = Permutation.permutation(new Integer[]{1});
|
||||
assertEquals(result.get(0)[0], 1);
|
||||
}
|
||||
@Test
|
||||
void testMultipleElements()
|
||||
{
|
||||
List<Integer []> result = Permutation.permutation(new Integer[]{1, 2});
|
||||
assertTrue(Arrays.equals(result.get(0), new Integer[]{1,2}));
|
||||
assertTrue(Arrays.equals(result.get(1), new Integer[]{2,1}));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user