How to Reverse Letters in Kotlin
The challenge Given a string str, reverse it omitting all non-alphabetic characters. Examples: For str = “krishan”, the output should be “nahsirk”. For str = “ultr53o?n”, the output should… Read More »How to Reverse Letters in Kotlin