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

 

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

You are given 2 int arrays, the first array is length 2 and the second array is length 3. Return a new array length 5 containing all elements of the second array followed by all the elements from the second array.


array1DCombineArrays([1, 2], [3, 4, 5]) → [3, 4, 5, 1, 2]
array1DCombineArrays([20, 10], [15, 25, 35]) → [15, 25, 35, 20, 10]
array1DCombineArrays([2, 2], [3, 3, 3]) → [3, 3, 3, 2, 2]

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

public int[] array1DCombineArrays(int[] a, int[] b) }

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