Q3. Given an array of integers of an arbitrary number of elements, write a program that creates
an array with the elements "rotated left" according to an integer denoting the shift. For
example:
[1, 2, 3] with shift 1 yields [2, 3, 1] and [1, 2, 3] with shift 2 yields [3, 1, 2].
Hint: Split the list into two lists (use the addition of two lists and slice).