/* Given an array of ints length 3, return an array with the elements * "rotated left" so {1, 2, 3} yields {2, 3, 1}. */ public int[] rotateLeft3(int[] nums) { return new int[] {nums[1], nums[2], nums[0]}; }