Hacking the Matrix

Report a typo

Neo is trying to hack the Matrix. He has a list of codes, but to solve this challenge, he must write the total sum of the lengths of the codes greater than or equal to 4. Could you please help him?

Sample Input 1:

1234mom daddy4456 god hack me

Sample Output 1:

20
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