This commit is contained in:
Electrominch
2022-10-07 00:48:48 +03:00
parent 0b88604037
commit e711e64e07
18 changed files with 45 additions and 45 deletions

View File

@@ -4,7 +4,7 @@
{
static void Main(string[] args)
{
var arr = new int[] { 1, 2, 3, 4, 5, 6};
var arr = new int[] { 1, 2, 3, 4, 5, 6 };
new Solution().Rotate(arr, 3);
Console.WriteLine(String.Join(" ", arr));
}