The secret is in the length

Report a typo

We have a list of words, and we must obtain the words with the length of 5 characters that are not in the first position of the list.

Sample Input 1:

dog mom dad peter

Sample Output 1:

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