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

 

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

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)

public int[] array1DSwapValues(int[] nums) }

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