Files
Leetcode/189. Rotate Array/Program.cs
Electrominch e711e64e07 Clear
2022-10-07 00:48:48 +03:00

12 lines
285 B
C#

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));
}
}
}