Problem
Write a recursive method which shifts the content of an array one position to the left. Note that the value in the first position will be lost and the last will have two consecutive occurrences at the end.
Input - {1, 2, 3, 4}; output ={2, 3, 4, 4}