kotlin map filterNot

Sure! Here is a response:

val numbers = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
val evenSquared = numbers.map { it * it }.filter { it % 2 == 0 }.map { "Value is $it" }
println(evenSquared)

Explanation: 1. Create a list of numbers from 1 to 10. 2. Use the map function to square each number in the list. 3. Use the filter function to keep only the squared numbers that are even. 4. Use the map function again to transform the even squared numbers into strings with the format "Value is x". 5. Print the resulting list of strings.