You have a list of first name of your students; please return a list with the names starting with "j".
Retrieve collection parts
List of names
Report a typo
Sample Input 1:
john jane joe jill packSample Output 1:
[john, jane, joe, jill]Write a program in Kotlin
fun main() {
val list = readln().split(" ")
// write your code here
val res =
println(res)
}
___
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.