Add them all

Report a typo

You are given two lists of integers. Combine these lists and return the result.

Sample Input 1:

0 1 2 3
4 5 6

Sample Output 1:

0 1 2 3 4 5 6
Write a program in Kotlin
fun solution(first: List<Int>, second: List<Int>): MutableList<Int> {
// put your code here
}
___

Create a free account to access the full topic