val String.upperCaseCount: Int get() = filter { it.isUpperCase() }.length
val String.upperCaseCount: Int get() = count { it.isUpperCase() }