Skip to content
Advertisement

Creating a New Reverse Java Array

CodingBat > Java > Array-1 > reverse3:

Given an array of ints length 3, return a new array with the elements in reverse order, so {1, 2, 3} becomes {3, 2, 1}.

JavaScript

I can’t get this to work properly, usually the last int in the array, becomes every single int in the new array

Advertisement

Answer

You don’t want a two-level loop. Just have one loop:

JavaScript

or, alternately, just don’t track j sepearately, and do this:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement