You are given two lists of integers. Combine these lists and return the result.
Mutable List
Add them all
Report a typo
Sample Input 1:
0 1 2 3
4 5 6Sample Output 1:
0 1 2 3 4 5 6Write a program in Kotlin
fun solution(first: List<Int>, second: List<Int>): MutableList<Int> {
// put your code here
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.