List of names

Report a typo

You have a list of first name of your students; please return a list with the names starting with "j".

Sample Input 1:

john jane joe jill pack

Sample 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)
}
___

Create a free account to access the full topic