about | help | code help+videos | done | prefs |
Given an array of ints, swap the first and next-to-last elements in the array. Return the modified array. The array length will be at least 2. array1DSwapValues([1, 2, 3, 4, 5]) → [4, 2, 3, 1, 5] array1DSwapValues([8, 9]) → [8, 9] array1DSwapValues([9, 3, 4, 2]) → [4, 3, 9, 2] ...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