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

 

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

Create a new array that contains the elements from the nums array in reverse order. Return the new array.


arrayReverseElements([10, 20, 30, 40]) → [40, 30, 20, 10]
arrayReverseElements([10]) → [10]
arrayReverseElements([10, 20]) → [20, 10]

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

public int[] arrayReverseElements(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