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

 

amjadm@miamioh.edu > together
prev  |  next  |  chance

Given two arrays, return a new array consisting of all the elements of the first array, followed by all the elements of the second array.


together([1, 2], [3, 4, 5]) → [1, 2, 3, 4, 5]
together([1, 2, 3], [1]) → [1, 2, 3, 1]
together([], [3, 4]) → [3, 4]

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

public int[] together(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: 215

Copyright Nick Parlante 2017 - privacy