about | help | code help+videos | done | prefs |
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) |
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