#11. rotateLeft3

rotateLeft3

Background

Description

Given an array of ints length 3, return an array with the elements "rotated left" so {1, 2, 3} yields {2, 3, 1}.

Format

Input

Output

Samples

[1 2 3]
[2, 3, 1]
[5 11 9]
[11, 9, 5]
[7 0 0]
[0, 0, 7]

Limitation

1s, 1024KiB for each test case.