about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy