Capitalize the words

Report a typo

You have a list of words. Print a map with each word as a value and capitalize the first letter as a key.

Sample Input 1:

john jane joe jill pack

Sample Output 1:

{J=jill, P=pack}
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