List of names

Report a typo

You have a list of names of your students. Please return the first student name that starts with "j" and ends with "e".

Sample Input 1:

john jane joe jill pack

Sample Output 1:

jane
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