This commit is contained in:
Electrominch
2022-10-06 00:46:00 +03:00
parent 062e03bdbf
commit cb2f99c3a8
21 changed files with 434 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
namespace _189._Rotate_Array
{
internal class Program
{
static void Main(string[] args)
{
var arr = new int[] { 1, 2, 3, 4, 5, 6};
new Solution().Rotate(arr, 3);
Console.WriteLine(String.Join(" ", arr));
}
}
}