-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCombinations.cs
35 lines (32 loc) · 855 Bytes
/
Combinations.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
namespace ConsoleApplication28
{
internal class Stack
{
public static void Main(string[] args)
{
var arr = new[] {'a', 'b', 'c'};
var t =permutation(arr);
foreach (var VARIABLE in t)
{
Console.WriteLine(VARIABLE);
}
}
private static string[] permutation(char[] arr)
{
List<string> list = new List<string>();
for (int i = 0; i < arr.Length; i++)
{
for (int j = i + 1; j < arr.Length; j++)
{
list.Add(new string(new char[]
{
arr[i], arr[j]
}));
}
}
return list.ToArray();
}
}
}