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

 

pais@kinetigram.com > A28_plusTwo
prev  |  next  |  chance

PCS Array 2, Problem 8. Given 2 int arrays, each length 2, return a new array length 4 containing all their elements.


A28_plusTwo([1, 2], [3, 4]) → [1, 2, 3, 4]
A28_plusTwo([4, 4], [2, 2]) → [4, 4, 2, 2]
A28_plusTwo([9, 2], [3, 4]) → [9, 2, 3, 4]

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

public int[] A28_plusTwo(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: 100

Copyright Nick Parlante 2017 - privacy