CJCoding With Joseph

Rotate an Array Left by One

An int array is given. Rotate it one position to the left: every element moves down one index and the first element wraps around to the end. Print the rotated array on one line separated by single spaces.

For the array {1, 2, 3, 4, 5} the program prints:
2 3 4 5 1

Expected Output:

2 3 4 5 1
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.