- Input: [1, 2, 3, 4, 5, 6, 7, 8, 9]
- Output Left shift by 4: [5, 6, 7, 8, 9, 1, 2, 3, 4]
- Output Right shift by 5: [5, 6, 7, 8, 9, 1, 2, 3, 4]
- Interviewer: Left shift by 4 and Right shift by 5
- Interviewer: Left shift by 4 in-place, without slicing
- Interviewer: Right shift by 5 in-place, without slicing