0
/ 15
[Based on an exercise at https://codeworkout.cs.vt.edu/]
Given two int
arrays a
and b
, each with two elements, return a new array with...
[Based on an exercise at https://codeworkout.cs.vt.edu/]
Given two int
arrays a
and b
, each with two elements, return a new array with four elements
containing all the elements of a
followed by all the elements of b
.
Examples:
plusTwo({1, 2}, {3, 4}) -> {1,2,3,4}
Your feedback will appear here when you check your answer.