Beispiel #1
0
        public void GetPermuations()
        {
            var result = _day24.GetPermutations <int>(new List <int>(new [] { 1, 2, 3 }), 3);

            result.ForEach(x => Console.WriteLine(string.Join(",", x)));
        }