Kotlinlearncs.online LogoJava
Return to List

Solve: Plus Two

Imported By: Geoffrey Challen
/ Version: 2021.6.0

Given two IntArrays of size 2, return a new array of size four containing the elements from the first array followed by the elements from the second array. So {1, 2} and {3, 4} would yield {1, 2, 3, 4}.

fun plusTwo(
a: IntArray,
b: IntArray,
): IntArray {
return intArrayOf() // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: