Files
Leetcode/46. Permutations/Program.cs
2022-10-18 00:45:31 +03:00

13 lines
277 B
C#

namespace _46._Permutations;
internal class Program
{
static void Main(string[] args)
{
var arr = new int[] { 1,2,3 };
var l = new Solution().Permute(arr);
foreach (var row in l)
Console.WriteLine(String.Join(" ", row));
}
}