fun lengthWithoutSpaces(str: String): Int {
return str.replace(" ", "").length
}
fun main() {
val str = "Kotlin Programming Language"
val length = lengthWithoutSpaces(str)
println("Length without spaces: $length")
}
/*
run:
Length without spaces: 25
*/