Day i do not know
This commit is contained in:
11
77. Combinations/Program.cs
Normal file
11
77. Combinations/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace _77._Combinations;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var res = new Solution().Combine(4, 2);
|
||||
foreach(var row in res)
|
||||
Console.WriteLine(string.Join(" ", row));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user