id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > arrayShift
prev  |  next  |  chance

Given an array named nums and a parameter offset, shift characters left or right one element according to the offset. The array will have at least one element and the offset will either be -1 (to shift elements left) or 1 (to shift the elements right). Return the new array.


arrayShift([10, 20, 30, 40], -1) → [20, 30, 40, 10]
arrayShift([10, 20, 30, 40], 1) → [40, 10, 20, 30]
arrayShift([10, 20], 1) → [20, 10]

...Save, Compile, Run (ctrl-enter)

public int[] arrayShift(int[] nums, int offset) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy