Question: Alice is wondering what an array will look like after rotating its elements to the left r times.A left rotation operation on an array shifts
Alice is wondering what an array will look like after rotating its elements to the left r times.A left rotation operation on an array shifts each of the array's elements 1 place to the left. For example: if you perform a left rotation on Array [1, 2, 3, 4], the array would become [2, 3, 4, 1].
Given an array of n integers and an integer r, help Alice perform r left rotations on the array, then print the updated array as a single line of space-separated integers. Constraints: 2 <= n <= 10, 1 <= r < n.
Sample input:
Enter a value of n: 4
Enter elements of array: 1 2 3 4
Sample output:
3412
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
