Hi,
i would like some help with this task.
My task is to write a function that shifts an array arbitrary number of steps.
So for example the array { 0,1,2,3,4,5,6,7,8,9 }
would look like { 9,0,1,2,3,4,5,6,7,8 } after the function was called with the steps arguments set to 1.
The...