The 'a' list

Report a typo

You are given a list of words. Return a list of those that start and end with the 'a' character.

Sample Input 1:

abracadabra mam dog

Sample Output 1:

[abracadabra]
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